svn commit: r313598 - stable/10/lib/libutil

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:31:28 UTC 2017


Author: ngie
Date: Sat Feb 11 06:31:26 2017
New Revision: 313598
URL: https://svnweb.freebsd.org/changeset/base/313598

Log:
  MFC r312470:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output

Modified:
  stable/10/lib/libutil/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libutil/Makefile
==============================================================================
--- stable/10/lib/libutil/Makefile	Sat Feb 11 06:30:25 2017	(r313597)
+++ stable/10/lib/libutil/Makefile	Sat Feb 11 06:31:26 2017	(r313598)
@@ -24,7 +24,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-stable-10 mailing list