0.9.1.63:
[sbcl.git] / make.sh
diff --git a/make.sh b/make.sh
index 35cb61d..3a81875 100755 (executable)
--- a/make.sh
+++ b/make.sh
 # 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