mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Minor tweak to use environment variable.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@22131 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a0bc1baea8
commit
e42d3c5323
3 changed files with 16 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-12:02 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
opentool.in:
|
||||
openapp.in:
|
||||
Honor the GNUSTEP_CONFIG_FILE environment variable.
|
||||
|
||||
2005-11-28 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* GNUstep.conf.in: Use new variables for handling backslashes in
|
||||
|
|
|
@ -32,7 +32,11 @@ if [ -z "$1" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
. @GNUSTEP_CONFIG_FILE@
|
||||
if [ -z "$GNUSTEP_CONFIG_FILE" ]; then
|
||||
GNUSTEP_CONFIG_FILE=@GNUSTEP_CONFIG_FILE@
|
||||
fi
|
||||
. $GNUSTEP_CONFIG_FILE
|
||||
|
||||
. $GNUSTEP_SYSTEM_ROOT/Library/Makefiles/GNUstep.sh
|
||||
|
||||
if [ -z "$GNUSTEP_FLATTENED" ]; then
|
||||
|
|
|
@ -31,7 +31,11 @@ if [ -z "$1" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
. @GNUSTEP_CONFIG_FILE@
|
||||
if [ -z "$GNUSTEP_CONFIG_FILE" ]; then
|
||||
GNUSTEP_CONFIG_FILE=@GNUSTEP_CONFIG_FILE@
|
||||
fi
|
||||
. $GNUSTEP_CONFIG_FILE
|
||||
|
||||
. $GNUSTEP_SYSTEM_ROOT/Library/Makefiles/GNUstep.sh
|
||||
|
||||
if [ -z "$EXEEXT" ]; then
|
||||
|
|
Loading…
Reference in a new issue