Fixed typo in setting GNUSTEP_USER_ROOT

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12383 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-02-02 12:59:22 +00:00
parent f1ea3385f5
commit a4c5fa0d6d
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ setenv GNUSTEP_LOCAL_ROOT @GNUSTEP_LOCAL_ROOT@
setenv GNUSTEP_NETWORK_ROOT @GNUSTEP_NETWORK_ROOT@
setenv GNUSTEP_USER_ROOT @GNUSTEP_USER_ROOT@
if ( "${?WINDIR}" ) then
if ( ! "${?WINDIR}" ) then
setenv GNUSTEP_USER_ROOT `echo ${GNUSTEP_USER_ROOT} | tr '\\' '/'`
endif

View file

@ -39,7 +39,7 @@ GNUSTEP_LOCAL_ROOT=@GNUSTEP_LOCAL_ROOT@
GNUSTEP_NETWORK_ROOT=@GNUSTEP_NETWORK_ROOT@
GNUSTEP_USER_ROOT=@GNUSTEP_USER_ROOT@
if [ -z "$WINDIR" ]; then
if [ ! -z "$WINDIR" ]; then
GNUSTEP_USER_ROOT=`echo $GNUSTEP_USER_ROOT | tr '\\\' '/'`
fi