diff options
author | ru <ru@FreeBSD.org> | 2004-03-02 14:32:23 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-03-02 14:32:23 +0000 |
commit | c2d12bfbee885e14b2c8f2bd309974c222232785 (patch) | |
tree | b46e85460c239b5a3c1bfada23b8c69832f56ce1 /Makefile | |
parent | 4561edec30aa426a62409ac8fe07acb4b19a738e (diff) | |
download | FreeBSD-src-c2d12bfbee885e14b2c8f2bd309974c222232785.zip FreeBSD-src-c2d12bfbee885e14b2c8f2bd309974c222232785.tar.gz |
Protect shell expansions.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -144,7 +144,9 @@ ${TGTS}: # Set a reasonable default .MAIN: all +.if make(world) STARTTIME!= LC_ALL=C date +.endif # # world # @@ -251,8 +253,10 @@ universe: @echo " (started ${STARTTIME})" @echo "--------------------------------------------------------------" +.if make(buildkernels) KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \ find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES +.endif buildkernels: .for kernel in ${KERNCONFS} |