svn commit: r313623 - stable/10/lib/libcompat

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:59:04 UTC 2017


Author: ngie
Date: Sat Feb 11 06:59:03 2017
New Revision: 313623
URL: https://svnweb.freebsd.org/changeset/base/313623

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

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

Modified: stable/10/lib/libcompat/Makefile
==============================================================================
--- stable/10/lib/libcompat/Makefile	Sat Feb 11 06:58:24 2017	(r313622)
+++ stable/10/lib/libcompat/Makefile	Sat Feb 11 06:59:03 2017	(r313623)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 LIB=	compat
-CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -I${.CURDIR}/../libc/locale
+CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -I${SRCTOP}/lib/libc/locale
 NO_PIC=
 
 WARNS?=	0


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