[Midnightbsd-cvs] src [7775] trunk/sys/conf/Makefile.amd64: Not all Pmake derived makes quietly tolerate assignment from shell commands

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Sep 4 17:08:28 EDT 2016


Revision: 7775
          http://svnweb.midnightbsd.org/src/?rev=7775
Author:   laffer1
Date:     2016-09-04 17:08:27 -0400 (Sun, 04 Sep 2016)
Log Message:
-----------
Not all Pmake derived makes quietly tolerate assignment from shell commands
with no output.  Add "echo" at the end these shell commands whose output is
assigned to a variable's value to ensure there is some output.

Obtained from: FreeBSD

Modified Paths:
--------------
    trunk/sys/conf/Makefile.amd64

Modified: trunk/sys/conf/Makefile.amd64
===================================================================
--- trunk/sys/conf/Makefile.amd64	2016-09-04 21:06:44 UTC (rev 7774)
+++ trunk/sys/conf/Makefile.amd64	2016-09-04 21:08:27 UTC (rev 7775)
@@ -31,9 +31,9 @@
 .endif
 .include "$S/conf/kern.pre.mk"
 
-DDB_ENABLED!=	grep DDB opt_ddb.h || true
-DTR_ENABLED!=	grep KDTRACE_FRAME opt_kdtrace.h || true
-HWPMC_ENABLED!=	grep HWPMC opt_hwpmc_hooks.h || true
+DDB_ENABLED!=	grep DDB opt_ddb.h || true ; echo
+DTR_ENABLED!=	grep KDTRACE_FRAME opt_kdtrace.h || true ; echo
+HWPMC_ENABLED!=	grep HWPMC opt_hwpmc_hooks.h || true ; echo
 .if !empty(DDB_ENABLED) || !empty(DTR_ENABLED) || !empty(HWPMC_ENABLED)
 CFLAGS+=	-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
 .endif



More information about the Midnightbsd-cvs mailing list