svn commit: r314463 - head/usr.sbin/tzsetup
Ngie Cooper
ngie at FreeBSD.org
Wed Mar 1 04:23:54 UTC 2017
Author: ngie
Date: Wed Mar 1 04:23:53 2017
New Revision: 314463
URL: https://svnweb.freebsd.org/changeset/base/314463
Log:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This simplifies pathing in make/displayed output.
MFC after: 1 week
Sponsored by: Dell EMC Isilon
Modified:
head/usr.sbin/tzsetup/Makefile
Modified: head/usr.sbin/tzsetup/Makefile
==============================================================================
--- head/usr.sbin/tzsetup/Makefile Wed Mar 1 04:22:23 2017 (r314462)
+++ head/usr.sbin/tzsetup/Makefile Wed Mar 1 04:23:53 2017 (r314463)
@@ -9,7 +9,7 @@ CFLAGS+= -I.
.if ${MK_DIALOG} != no
WARNS?= 3
-CFLAGS+= -I${.CURDIR}/../../contrib/dialog -DHAVE_DIALOG
+CFLAGS+= -I${SRCTOP}/contrib/dialog -DHAVE_DIALOG
LIBADD= dialog ncursesw
.endif
More information about the svn-src-all
mailing list