remove world-lock from WITH-COMPILATION-UNIT
[sbcl.git] / make-target-contrib.sh
index bcff011..c171111 100644 (file)
@@ -18,7 +18,8 @@ echo //entering make-target-contrib.sh
 
 LANG=C
 LC_ALL=C
-export LANG LC_ALL
+CC=${CC:-gcc}
+export CC LANG LC_ALL
 
 # Load our build configuration
 . output/build-config
@@ -61,10 +62,10 @@ find output -name 'building-contrib.*' -print | xargs rm -f
 CL_SOURCE_REGISTRY='(:source-registry :ignore-inherited-configuration)'
 export CL_SOURCE_REGISTRY
 
-if [ -z "$@" ]; then
+if [ -z "$*" ]; then
     contribs_to_build=contrib/*
 else
-    for name in $@; do
+    for name in $*; do
         contribs_to_build="contrib/$name $contribs_to_build"
     done
 fi