Quoted some more paths

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@13342 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-04-04 14:19:13 +00:00
parent b07f617489
commit d95b3c385f

View file

@ -55,7 +55,7 @@ if [ -z "$GNUSTEP_HOST" ]; then
tmpdir=`pwd`; cd /tmp tmpdir=`pwd`; cd /tmp
GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.guess` GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.guess`
GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.sub $GNUSTEP_HOST` GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.sub $GNUSTEP_HOST`
cd $tmpdir cd "$tmpdir"
# Because this file is sourced rather than executed, we need to unset # Because this file is sourced rather than executed, we need to unset
# every temporary variable when we are done with it, otherwise they # every temporary variable when we are done with it, otherwise they
# pollute the calling environment! # pollute the calling environment!
@ -100,10 +100,10 @@ if [ -z "$GNUSTEP_PATHPREFIX_LIST" ]; then
G_L_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_LOCAL_ROOT"` G_L_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_LOCAL_ROOT"`
G_N_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_NETWORK_ROOT"` G_N_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_NETWORK_ROOT"`
G_S_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_SYSTEM_ROOT"` G_S_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_SYSTEM_ROOT"`
GNUSTEP_PATHPREFIX_LIST=$G_U_R:$G_L_R:$G_N_R:$G_S_R GNUSTEP_PATHPREFIX_LIST="$G_U_R:$G_L_R:$G_N_R:$G_S_R"
else else
GNUSTEP_PATHPREFIX_LIST=$GNUSTEP_USER_ROOT:$GNUSTEP_LOCAL_ROOT:$GNUSTEP_NETWORK_ROOT:$GNUSTEP_SYSTEM_ROOT GNUSTEP_PATHPREFIX_LIST="$GNUSTEP_USER_ROOT:$GNUSTEP_LOCAL_ROOT:$GNUSTEP_NETWORK_ROOT:$GNUSTEP_SYSTEM_ROOT"
fi fi
export GNUSTEP_PATHPREFIX_LIST export GNUSTEP_PATHPREFIX_LIST
fi fi
@ -112,10 +112,10 @@ tmp_IFS="$IFS"
IFS=: IFS=:
temp_path= temp_path=
for dir in $GNUSTEP_PATHPREFIX_LIST; do for dir in $GNUSTEP_PATHPREFIX_LIST; do
temp_path=$temp_path$dir/Tools: temp_path="$temp_path$dir/Tools:"
if [ -z "$GNUSTEP_FLATTENED" ]; then if [ -z "$GNUSTEP_FLATTENED" ]; then
temp_path=$temp_path$dir/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}/${LIBRARY_COMBO}: temp_path="$temp_path$dir/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}/${LIBRARY_COMBO}:"
temp_path=$temp_path$dir/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}: temp_path="$temp_path$dir/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}:"
fi fi
done done
IFS="$tmp_IFS" IFS="$tmp_IFS"