From ab5e865567e245c0479b01d2157e460a56f95ac5 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Thu, 10 Jun 2004 19:33:26 +0000 Subject: [PATCH] Die if make buildworld fails -- don't wait 'till installworld can't find what it needs. --- release/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/Makefile b/release/Makefile index 154effd8270a..f9a8fdd07d11 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}