summaryrefslogtreecommitdiffstats
path: root/sys/conf/Makefile.amd64
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2012-09-12 14:17:11 +0000
committerobrien <obrien@FreeBSD.org>2012-09-12 14:17:11 +0000
commitfea385a6bf8d4cbceec7359f5c9a45cc46db5f4a (patch)
tree37133cd062754b71c7b8e6cb3e4e5c63b220e8a0 /sys/conf/Makefile.amd64
parent0a297753318f752e086ba8e53898f99eb56c0133 (diff)
downloadFreeBSD-src-fea385a6bf8d4cbceec7359f5c9a45cc46db5f4a.zip
FreeBSD-src-fea385a6bf8d4cbceec7359f5c9a45cc46db5f4a.tar.gz
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. Submitted by: John Van Horne <jvanhorne@juniper.net>
Diffstat (limited to 'sys/conf/Makefile.amd64')
-rw-r--r--sys/conf/Makefile.amd646
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/conf/Makefile.amd64 b/sys/conf/Makefile.amd64
index 33f146e..faf01c6 100644
--- a/sys/conf/Makefile.amd64
+++ b/sys/conf/Makefile.amd64
@@ -31,9 +31,9 @@ S= ../../..
.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
.endif
OpenPOWER on IntegriCloud