diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-10-01 21:52:25 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-10-01 21:52:25 +0000 |
commit | 066a643b9fd3a33aef69d039829982544aa58a36 (patch) | |
tree | 54a205d07506e4edabd43510539b3f791d13cc7e /targets/pseudo/bootstrap-tools | |
parent | 12a36c8cce7b9ec2e572dc0f69660e0c12138bfc (diff) | |
download | src-066a643b9fd3a33aef69d039829982544aa58a36.tar.gz src-066a643b9fd3a33aef69d039829982544aa58a36.zip |
Don't create cookie until the command is all finished, it or the commands
after may fail.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=288462
Diffstat (limited to 'targets/pseudo/bootstrap-tools')
-rw-r--r-- | targets/pseudo/bootstrap-tools/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/targets/pseudo/bootstrap-tools/Makefile b/targets/pseudo/bootstrap-tools/Makefile index 1b0ebde783fe..b0e62d58d7c4 100644 --- a/targets/pseudo/bootstrap-tools/Makefile +++ b/targets/pseudo/bootstrap-tools/Makefile @@ -43,8 +43,10 @@ BSARGS= DESTDIR= \ legacy: .MAKE .META mkdir -p ${LEGACY_TOOLS} - ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${BTOOLSDIR} > $@2 - ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${LEGACY_TOOLS} > $@ + ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${BTOOLSDIR} \ + > $@.distrib-dirs_btoolsdir + ${MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${LEGACY_TOOLS} \ + > $@.distrib-dirs_legacy_tools ${BSENV} ${MAKE} -C ${SRCTOP} -f Makefile.inc1 ${BSARGS} $@ touch $@ |