Quick hack temporary fix.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12872 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-02-28 07:27:00 +00:00
parent 80985af3ef
commit 574caa3a29
3 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,8 @@
2002-02-28 Richard Frith-Macdonald <rfm@gnu.org>
* configure.in: Set default user root to $HOME/GNUstep as a
quick hack solution to problems with LOGNAME
2002-02-27 Adam Fedor <fedor@gnu.org>
* Documentation/README.MinGW: Update.

6
configure vendored
View file

@ -44,13 +44,13 @@ ac_help="$ac_help
--with-user-root
Set the GNUSTEP_USER_ROOT directory. Use this option if you want
to have the GNUSTEP_USER_ROOT directory in a non-standard place. Example:
--with-user-root=~$LOGNAME/local/GNUstep
--with-user-root=/MyHome/local/GNUstep
"
ac_help="$ac_help
--with-defaults-root
Set the GNUSTEP_DEFAULTS_ROOT directory. Use this option if you want
to have the GNUSTEP_DEFAULTS_ROOT directory in a non-standard place. Example:
--with-defaults-root=~$LOGNAME
--with-defaults-root=$HOME
"
ac_help="$ac_help
--enable-flattened Use flattened directory structure"
@ -1648,7 +1648,7 @@ else
# because HOMEDRIVE and HOMEPATH are only expanded inside GNUstep.sh
GNUSTEP_USER_ROOT='$HOMEDRIVE/$HOMEPATH/GNUstep'
else
GNUSTEP_USER_ROOT='~$LOGNAME/GNUstep'
GNUSTEP_USER_ROOT='$HOME/GNUstep'
fi
fi

View file

@ -199,7 +199,7 @@ AC_ARG_WITH(user-root,
[--with-user-root
Set the GNUSTEP_USER_ROOT directory. Use this option if you want
to have the GNUSTEP_USER_ROOT directory in a non-standard place. Example:
--with-user-root=~$LOGNAME/local/GNUstep
--with-user-root=/MyHome/local/GNUstep
],
GNUSTEP_USER_ROOT="$withval",
if test ! -z "$WINDIR"; then
@ -207,7 +207,7 @@ if test ! -z "$WINDIR"; then
# because HOMEDRIVE and HOMEPATH are only expanded inside GNUstep.sh
GNUSTEP_USER_ROOT='$HOMEDRIVE/$HOMEPATH/GNUstep'
else
GNUSTEP_USER_ROOT='~$LOGNAME/GNUstep'
GNUSTEP_USER_ROOT='$HOME/GNUstep'
fi
)
AC_MSG_RESULT($GNUSTEP_USER_ROOT)
@ -217,7 +217,7 @@ AC_ARG_WITH(defaults-root,
[--with-defaults-root
Set the GNUSTEP_DEFAULTS_ROOT directory. Use this option if you want
to have the GNUSTEP_DEFAULTS_ROOT directory in a non-standard place. Example:
--with-defaults-root=~$LOGNAME
--with-defaults-root=$HOME
],
GNUSTEP_DEFAULTS_ROOT="$withval",
GNUSTEP_DEFAULTS_ROOT=""