Some path quoting fixes ... many more needed I guess.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12213 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-01-25 11:46:23 +00:00
parent 9ceae30da6
commit 2c2b9d72e0
2 changed files with 13 additions and 8 deletions

View file

@ -1,3 +1,8 @@
2002-01-25 Richard Frith-Macdonald <rfm@gnu.org>
* GNUstep.sh.in: Add some quoting to make paths to user GNUstep.sh
file and make_services files work when there are embedded spaces.
Wed Jan 23 02:53:51 2002 Nicola Pero <n.pero@mi.flashnet.it>
* GNUstep.csh.in: Fixed setting GNUSTEP_USER_ROOT when it's empty

View file

@ -187,9 +187,9 @@ export CLASSPATH
#
# Perform any user initialization
#
if [ -f $GNUSTEP_USER_ROOT/GNUstep.sh ]
if [ -f "$GNUSTEP_USER_ROOT/GNUstep.sh" ]
then
. $GNUSTEP_USER_ROOT/GNUstep.sh
. "$GNUSTEP_USER_ROOT/GNUstep.sh"
fi
#
@ -198,20 +198,20 @@ fi
#
if [ -z "$GNUSTEP_FLATTENED" ]; then
TDIR=$GNUSTEP_SYSTEM_ROOT/Tools/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS
if [ -x $TDIR/$LIBRARY_COMBO/make_services ]
if [ -x "$TDIR/$LIBRARY_COMBO/make_services" ]
then
$TDIR/$LIBRARY_COMBO/make_services &
"$TDIR/$LIBRARY_COMBO/make_services" &
else
if [ -x $TDIR/make_services ]
if [ -x "$TDIR/make_services" ]
then
$TDIR/make_services &
"$TDIR/make_services" &
fi
fi
else
TDIR=$GNUSTEP_SYSTEM_ROOT/Tools
if [ -x $TDIR/make_services ]
if [ -x "$TDIR/make_services" ]
then
$TDIR/make_services &
"$TDIR/make_services" &
fi
fi
unset TDIR