From 2b47574f810d541bf36f7efdf89650d8ca14d3ca Mon Sep 17 00:00:00 2001 From: Jim Wise Date: Thu, 10 Nov 2011 10:05:43 -0500 Subject: [PATCH] Adjust for Solaris /bin/sh. --- make-target-contrib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make-target-contrib.sh b/make-target-contrib.sh index bcff011..22fe7e5 100644 --- a/make-target-contrib.sh +++ b/make-target-contrib.sh @@ -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 -- 1.7.10.4