mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 06:10:50 +00:00
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:
parent
9ceae30da6
commit
2c2b9d72e0
2 changed files with 13 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue