Author: ngie
Date: Thu Jul 20 01:02:37 2017
New Revision: 321272
URL: https://svnweb.freebsd.org/changeset/base/321272
Log:
MFC r314479:
Use :H to manipulate .CURDIR-relative paths instead of ../
This simplifies make output
Modified:
stable/10/usr.sbin/fifolog/fifolog_create/Makefile
stable/10/usr.sbin/fifolog/fifolog_reader/Makefile
stable/10/usr.sbin/fifolog/fifolog_writer/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.sbin/fifolog/fifolog_create/Makefile
==============================================================================
--- stable/10/usr.sbin/fifolog/fifolog_create/Makefile Thu Jul 20 01:02:30
2017 (r321271)
+++ stable/10/usr.sbin/fifolog/fifolog_create/Makefile Thu Jul 20 01:02:37
2017 (r321272)
@@ -2,7 +2,7 @@
PROG= fifolog_create
-CFLAGS+= -I${.CURDIR}/../lib
+CFLAGS+= -I${.CURDIR:H}/lib
DPADD= ${LIBFIFOLOG} ${LIBUTIL}
LDADD= ${LIBFIFOLOG} -lutil
Modified: stable/10/usr.sbin/fifolog/fifolog_reader/Makefile
==============================================================================
--- stable/10/usr.sbin/fifolog/fifolog_reader/Makefile Thu Jul 20 01:02:30
2017 (r321271)
+++ stable/10/usr.sbin/fifolog/fifolog_reader/Makefile Thu Jul 20 01:02:37
2017 (r321272)
@@ -2,7 +2,7 @@
PROG= fifolog_reader
-CFLAGS+= -I${.CURDIR}/../lib
+CFLAGS+= -I${.CURDIR:H}/lib
MAN=
Modified: stable/10/usr.sbin/fifolog/fifolog_writer/Makefile
==============================================================================
--- stable/10/usr.sbin/fifolog/fifolog_writer/Makefile Thu Jul 20 01:02:30
2017 (r321271)
+++ stable/10/usr.sbin/fifolog/fifolog_writer/Makefile Thu Jul 20 01:02:37
2017 (r321272)
@@ -2,7 +2,7 @@
PROG= fifolog_writer
-CFLAGS+= -I${.CURDIR}/../lib
+CFLAGS+= -I${.CURDIR:H}/lib
MAN=
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "[email protected]"