X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=3a818758591cdc09d6d5c4021b7a901208090971;hb=2253ebaef8a0a1527d2282a1c10f48c62e0d4a83;hp=35cb61d084b20cfd12537df3da35f573b245afa9;hpb=5e291412ff095a2016388eee8ac265e12d565119;p=sbcl.git diff --git a/make.sh b/make.sh index 35cb61d..3a81875 100755 --- a/make.sh +++ b/make.sh @@ -52,10 +52,15 @@ # whether the cross-compilation host returns suitable values from # UPGRADED-ARRAY-ELEMENT-TYPE?) +LANG=C +LC_ALL=C +export LANG +export LC_ALL + 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\" @@ -102,15 +107,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