X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=3a818758591cdc09d6d5c4021b7a901208090971;hb=7c7e6276719b8d40fddec2070cad81064a25c8ed;hp=6d66d639f0a01446983847ca573226367f9e7a77;hpb=eaa8a506790bb6ed627da617247bfd13802eb365;p=sbcl.git diff --git a/make.sh b/make.sh index 6d66d63..3a81875 100755 --- a/make.sh +++ b/make.sh @@ -53,7 +53,9 @@ # UPGRADED-ARRAY-ELEMENT-TYPE?) LANG=C +LC_ALL=C export LANG +export LC_ALL build_started=`date` echo "//starting build: $build_started" @@ -105,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