mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Use pushd/popd
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@6041 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1f2385990b
commit
d258e86747
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2000-02-18 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GNustep.sh.in: Use pushd/popd to changes dirs.
|
||||
|
||||
2000-01-26 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* rules.make: Revert previous change of parens around tmp.
|
||||
|
|
|
@ -47,10 +47,10 @@ export GNUSTEP_MAKEFILES
|
|||
# Determine the host information
|
||||
#
|
||||
if [ -z "$GNUSTEP_HOST" ]; then
|
||||
pushd /tmp
|
||||
pushd /tmp >> /dev/null
|
||||
GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.guess`
|
||||
GNUSTEP_HOST=`$GNUSTEP_MAKEFILES/config.sub $GNUSTEP_HOST`
|
||||
popd
|
||||
popd >> /dev/null
|
||||
fi
|
||||
GNUSTEP_HOST_CPU=`$GNUSTEP_MAKEFILES/cpu.sh $GNUSTEP_HOST`
|
||||
GNUSTEP_HOST_VENDOR=`$GNUSTEP_MAKEFILES/vendor.sh $GNUSTEP_HOST`
|
||||
|
|
Loading…
Reference in a new issue