mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Updated to allow configure force a different GNUSTEP_USER_ROOT to be used
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11561 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2993a3f9b4
commit
18c80958ac
1 changed files with 7 additions and 4 deletions
|
@ -37,11 +37,14 @@ export GNUSTEP_MAKEFILES
|
|||
|
||||
GNUSTEP_LOCAL_ROOT=@GNUSTEP_LOCAL_ROOT@
|
||||
GNUSTEP_NETWORK_ROOT=@GNUSTEP_NETWORK_ROOT@
|
||||
GNUSTEP_USER_ROOT=@GNUSTEP_USER_ROOT@
|
||||
|
||||
if [ ! -z "$WINDIR" ]; then
|
||||
GNUSTEP_USER_ROOT=`echo $HOMEDRIVE/$HOMEPATH/GNUstep | tr '\\\' '/'`
|
||||
else
|
||||
GNUSTEP_USER_ROOT=~/GNUstep
|
||||
if [ -z "$GNUSTEP_USER_ROOT" ]; then
|
||||
if [ ! -z "$WINDIR" ]; then
|
||||
GNUSTEP_USER_ROOT=`echo $HOMEDRIVE/$HOMEPATH/GNUstep | tr '\\\' '/'`
|
||||
else
|
||||
GNUSTEP_USER_ROOT=~/GNUstep
|
||||
fi
|
||||
fi
|
||||
|
||||
ac_save_ifs="$IFS"; IFS=":"
|
||||
|
|
Loading…
Reference in a new issue