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

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

Modified: head/lib/libsysdecode/Makefile
==============================================================================
--- head/lib/libsysdecode/Makefile      Fri Jan 20 04:32:36 2017        
(r312475)
+++ head/lib/libsysdecode/Makefile      Fri Jan 20 04:33:20 2017        
(r312476)
@@ -9,8 +9,8 @@ SRCS=   errno.c flags.c ioctl.c signal.c s
 INCS=  sysdecode.h
 
 CFLAGS+= -I${.OBJDIR}
-CFLAGS+= -I${.CURDIR}/../../sys
-CFLAGS+= -I${.CURDIR}/../../libexec/rtld-elf
+CFLAGS+= -I${SRCTOP}/sys
+CFLAGS+= -I${SRCTOP}/libexec/rtld-elf
 
 MAN=   sysdecode.3 \
        sysdecode_abi_to_freebsd_errno.3 \
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to