Adjust for Solaris /bin/sh.

This commit is contained in:
Jim Wise 2011-11-10 10:05:43 -05:00
parent 9cd0440060
commit 2b47574f81

View file

@ -61,10 +61,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