svn commit: r312470 - head/lib/libutil

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:29:06 UTC 2017


Author: ngie
Date: Fri Jan 20 04:29:05 2017
New Revision: 312470
URL: https://svnweb.freebsd.org/changeset/base/312470

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/libutil/Makefile

Modified: head/lib/libutil/Makefile
==============================================================================
--- head/lib/libutil/Makefile	Fri Jan 20 04:28:41 2017	(r312469)
+++ head/lib/libutil/Makefile	Fri Jan 20 04:29:05 2017	(r312470)
@@ -25,7 +25,7 @@ CFLAGS+= -DLIBC_SCCS
 CFLAGS+= -DINET6
 .endif
 
-CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../libc/gen/
+CFLAGS+= -I${.CURDIR} -I${SRCTOP}/lib/libc/gen/
 
 MAN+=	expand_number.3 flopen.3 fparseln.3 hexdump.3 \
 	humanize_number.3 kinfo_getallproc.3 kinfo_getfile.3 \


More information about the svn-src-head mailing list