svn commit: r313621 - stable/10/lib/libkiconv

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:57:23 UTC 2017


Author: ngie
Date: Sat Feb 11 06:57:22 2017
New Revision: 313621
URL: https://svnweb.freebsd.org/changeset/base/313621

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

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

Modified: stable/10/lib/libkiconv/Makefile
==============================================================================
--- stable/10/lib/libkiconv/Makefile	Sat Feb 11 06:56:38 2017	(r313620)
+++ stable/10/lib/libkiconv/Makefile	Sat Feb 11 06:57:22 2017	(r313621)
@@ -16,7 +16,7 @@ MLINKS+=	kiconv.3 kiconv_add_xlat16_cspa
 		kiconv.3 kiconv_add_xlat16_cspairs.3 \
 		kiconv.3 kiconv_add_xlat16_table.3
 
-CFLAGS+=	-I${.CURDIR}/../../sys
+CFLAGS+=	-I${SRCTOP}/sys
 
 WARNS?=		1
 


More information about the svn-src-stable-10 mailing list