svn commit: r312476 - head/lib/libsysdecode
Ngie Cooper
ngie at FreeBSD.org
Fri Jan 20 04:33:21 UTC 2017
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 \
More information about the svn-src-head
mailing list