mirror of
https://github.com/gnustep/tools-make.git
synced 2025-05-05 19:30:55 +00:00
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:
parent
b07f617489
commit
d95b3c385f
1 changed files with 6 additions and 6 deletions
|
@ -55,7 +55,7 @@ if [ -z "$GNUSTEP_HOST" ]; then
|
|||
tmpdir=`pwd`; cd /tmp
|
||||
GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.guess`
|
||||
GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.sub $GNUSTEP_HOST`
|
||||
cd $tmpdir
|
||||
cd "$tmpdir"
|
||||
# Because this file is sourced rather than executed, we need to unset
|
||||
# every temporary variable when we are done with it, otherwise they
|
||||
# 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_N_R=`$GNUSTEP_MAKEFILES/fixpath.sh -u "$GNUSTEP_NETWORK_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
|
||||
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
|
||||
export GNUSTEP_PATHPREFIX_LIST
|
||||
fi
|
||||
|
@ -112,10 +112,10 @@ tmp_IFS="$IFS"
|
|||
IFS=:
|
||||
temp_path=
|
||||
for dir in $GNUSTEP_PATHPREFIX_LIST; do
|
||||
temp_path=$temp_path$dir/Tools:
|
||||
temp_path="$temp_path$dir/Tools:"
|
||||
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}:
|
||||
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}:"
|
||||
fi
|
||||
done
|
||||
IFS="$tmp_IFS"
|
||||
|
|
Loading…
Reference in a new issue