X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=fb7ce14450fd1954490f69f3156e3d3f4cfd695f;hb=15d6e7c9a2c3234f95dfe278046fa2fee1b0c007;hp=f2e259bf7ee6ff1d6c61995d1c58496060951ae9;hpb=5d410bdb150733e21db25c5b4e6814f3775c16c0;p=sbcl.git diff --git a/make.sh b/make.sh index f2e259b..fb7ce14 100755 --- a/make.sh +++ b/make.sh @@ -109,11 +109,16 @@ time sh make-target-contrib.sh || exit 1 # Sometimes people used to see the "No tests failed." output from the last # DEFTEST in contrib self-tests and think that's all that is. So... -FLAG=false +FLAG=true for dir in contrib/* do if [ -d "$dir" -a -e "$dir/Makefile" -a ! -e "$dir/test-passed" ]; then - $FLAG || (echo "Failed contribs:" && FLAG=true) + if $FLAG; then + echo > /dev/null + else + echo "Failed contribs:" + FLAG=false + fi echo " `basename $dir`" fi done