svn commit: r312490 - head/lib/libpcap

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:39:37 UTC 2017


Author: ngie
Date: Fri Jan 20 04:39:36 2017
New Revision: 312490
URL: https://svnweb.freebsd.org/changeset/base/312490

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output
  
  MFC after:    3 weeks
  Sponsored by: Dell EMC Isilon

Modified:
  head/lib/libpcap/Makefile

Modified: head/lib/libpcap/Makefile
==============================================================================
--- head/lib/libpcap/Makefile	Fri Jan 20 04:38:54 2017	(r312489)
+++ head/lib/libpcap/Makefile	Fri Jan 20 04:39:36 2017	(r312490)
@@ -114,7 +114,7 @@ SHLIB_MAJOR=	8
 #
 # Magic to grab sources out of src/contrib
 #
-PCAP_DISTDIR?=${.CURDIR}/../../contrib/libpcap
+PCAP_DISTDIR?=${SRCTOP}/contrib/libpcap
 CFLAGS+=-I${PCAP_DISTDIR}
 .PATH:	${PCAP_DISTDIR}
 .PATH:	${PCAP_DISTDIR}/bpf/net


More information about the svn-src-head mailing list