X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=8f8d703faad12e780645b0dc855fe06c0abbfc95;hb=3463b858635f78b4230c4e459892b611c5bfd9d4;hp=2a9a9b6843f4261ba49f7e6ff6635b6d429aa51a;hpb=3273f8edb6c40ed9e046c807b0f1d1ff42bb9a35;p=sbcl.git diff --git a/make.sh b/make.sh index 2a9a9b6..8f8d703 100755 --- a/make.sh +++ b/make.sh @@ -58,7 +58,7 @@ export LANG build_started=`date` echo "//starting build: $build_started" -SBCL_XC_HOST="${1:-sbcl --disable-debugger}" +SBCL_XC_HOST="${1:-sbcl --disable-debugger --userinit /dev/null --sysinit /dev/null}" export SBCL_XC_HOST echo //SBCL_XC_HOST=\"$SBCL_XC_HOST\" @@ -105,15 +105,15 @@ 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=true +HEADER_HAS_BEEN_PRINTED=false for dir in contrib/* do - if [ -d "$dir" -a -e "$dir/Makefile" -a ! -e "$dir/test-passed" ]; then - if $FLAG; then + if [ -d "$dir" -a -f "$dir/Makefile" -a ! -f "$dir/test-passed" ]; then + if $HEADER_HAS_BEEN_PRINTED; then echo > /dev/null else echo "Failed contribs:" - FLAG=false + HEADER_HAS_BEEN_PRINTED=true fi echo " `basename $dir`" fi