aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2012-09-12 14:44:25 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2012-09-12 14:44:25 +0000
commitf59c1f67dbad34936c2399c0136828867d26b1a4 (patch)
tree2462e214722a0f83d904824640d6b0258401d886 /Makefile
parent43bb1a21f2d317120591bae6f4e0132f434b83a8 (diff)
downloadsrc-f59c1f67dbad34936c2399c0136828867d26b1a4.tar.gz
src-f59c1f67dbad34936c2399c0136828867d26b1a4.zip
Not all Pmake derivatives silently handle empty shell output, so ensure there
is something for make(1) to consume. Bmake gives output such as: "warning: Couldn't read shell's output for "/bin/sh -c true" Note we parted from traditional Pmake behavior in r18864 / r18255.
Notes
Notes: svn path=/head/; revision=240403
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a8216f6549b4..1303e0ea18bd 100644
--- a/Makefile
+++ b/Makefile
@@ -216,7 +216,7 @@ ${TGTS}:
.MAIN: all
STARTTIME!= LC_ALL=C date
-CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s
+CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
.if !empty(CHECK_TIME)
.error check your date/time: ${STARTTIME}
.endif