diff options
author | brian <brian@FreeBSD.org> | 2004-06-10 19:33:26 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2004-06-10 19:33:26 +0000 |
commit | 29ce6f2a2a8b0dc8cd612106b4c7bb8215236af8 (patch) | |
tree | db7ce98009f34a6b38f635ded765c5e931acf430 /release | |
parent | ac799efe532895c2bc9169f11b995d54b4c9fc00 (diff) | |
download | FreeBSD-src-29ce6f2a2a8b0dc8cd612106b4c7bb8215236af8.zip FreeBSD-src-29ce6f2a2a8b0dc8cd612106b4c7bb8215236af8.tar.gz |
Die if make buildworld fails -- don't wait 'till installworld can't find
what it needs.
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 154effd..f9a8fdd 100644 --- a/release/Makefile +++ b/release/Makefile @@ -470,7 +470,7 @@ release rerelease: echo "if [ ! -f /tmp/.world_done ]; then" >> ${_MK} echo " cd /usr/src" >> ${_MK} echo " ${CROSSMAKE} ${WORLD_FLAGS} -DNOCLEAN buildworld && \\" >> ${_MK} - echo " touch /tmp/.world_done" >> ${_MK} + echo " touch /tmp/.world_done || exit 1" >> ${_MK} echo "fi" >> ${_MK} echo "if [ ! -f /tmp/.skip_ports ]; then" >> ${_MK} echo " echo \">>> make readmes started on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK} |