From 0cd3adeb0658008a4c26ba9735534ed86c93873d Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Sat, 27 Oct 2018 11:24:06 +1300 Subject: [PATCH] Remove status from exit calls --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c731e48c419c..656b70651bef7 100644 --- a/Makefile +++ b/Makefile @@ -520,7 +520,7 @@ light-source-dist: light-source-dist.tmp # to the source directory. DIRNAME=julia-$(JULIA_COMMIT); \ sed -e "s_.*_$$DIRNAME/&_" light-source-dist.tmp > light-source-dist.tmp1; \ - ln -s . $$DIRNAME || exit 1; \ + ln -s . $$DIRNAME || exit; \ tar -cz --no-recursion -T light-source-dist.tmp1 -f julia-$(JULIA_VERSION)_$(JULIA_COMMIT).tar.gz; \ rm -v $$DIRNAME @@ -542,7 +542,7 @@ full-source-dist: light-source-dist.tmp # to the source directory. DIRNAME=julia-$(JULIA_COMMIT); \ sed -e "s_.*_$$DIRNAME/&_" full-source-dist.tmp > full-source-dist.tmp1; \ - ln -s . $$DIRNAME || exit 1; \ + ln -s . $$DIRNAME || exit; \ tar -cz --no-recursion -T full-source-dist.tmp1 -f julia-$(JULIA_VERSION)_$(JULIA_COMMIT)-full.tar.gz; \ rm -v $$DIRNAME