Skip to content

Commit

Permalink
config.sub fixes
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@5368 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
afedor committed Dec 3, 1999
1 parent 2e9d46d commit 579575b
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 167 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
1999-12-02 Adam Fedor <fedor@gnu.org>

* GNUstep.csh.in: Run GNUSTEP_HOST through config.sub to get correct
CPU, etc.
* GNUstep.sh.in: Likewise.
* debugapp.in: Likewise.
* executable.template.in: Likewise.
* names.make: Likewise.
* openapp.in: Likewise.
* opentool.in: Likewise.

Fri Nov 12 11:52:14 1999 Lyndon Tremblay <ltremblay@mezzanine.xnot.com>

* rules.make: Moved some Java rules into gstep-java.
Expand Down
1 change: 1 addition & 0 deletions GNUstep.csh.in
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ endif
#
if ( ! ${?GNUSTEP_HOST} ) then
setenv GNUSTEP_HOST `(cd /tmp; ${GNUSTEP_SYSTEM_ROOT}/Makefiles/config.guess)`
setenv GNUSTEP_HOST `(cd /tmp; ${GNUSTEP_SYSTEM_ROOT}/Makefiles/config.sub ${GNUSTEP_HOST})`
endif
setenv GNUSTEP_HOST_CPU `${GNUSTEP_SYSTEM_ROOT}/Makefiles/cpu.sh $GNUSTEP_HOST`
setenv GNUSTEP_HOST_VENDOR `${GNUSTEP_SYSTEM_ROOT}/Makefiles/vendor.sh $GNUSTEP_HOST`
Expand Down
1 change: 1 addition & 0 deletions GNUstep.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export GNUSTEP_MAKEFILES
#
if [ -z "$GNUSTEP_HOST" ]; then
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_MAKEFILES/config.guess)`
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_MAKEFILES/config.sub $GNUSTEP_HOST)`
fi
GNUSTEP_HOST_CPU=`$GNUSTEP_MAKEFILES/cpu.sh $GNUSTEP_HOST`
GNUSTEP_HOST_VENDOR=`$GNUSTEP_MAKEFILES/vendor.sh $GNUSTEP_HOST`
Expand Down
3 changes: 2 additions & 1 deletion MediaBook.func
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@ function repswitch {
function hostinfo {
if [ -z "$GNUSTEP_HOST" ]; then
GNUSTEP_HOST=`$GNUSTEP_SYSTEM_ROOT/Makefiles/config.guess`
GNUSTEP_HOST=`$GNUSTEP_SYSTEM_ROOT/Makefiles/config.sub $GNUSTEP_HOST`
export GNUSTEP_HOST
fi
if [ -z "$GNUSTEP_HOST_CPU" ]; then
Expand Down Expand Up @@ -639,4 +640,4 @@ function userroot {
export GNUSTEP_USER_ROOT
assignpaths
fi
}
}
1 change: 1 addition & 0 deletions debugapp.in
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ fi
#
if [ -z "$GNUSTEP_HOST" ]; then
GNUSTEP_HOST=`$GNUSTEP_SYSTEM_ROOT/Makefiles/config.guess`
GNUSTEP_HOST=`$GNUSTEP_SYSTEM_ROOT/Makefiles/config.sub $GNUSTEP_HOST`
export GNUSTEP_HOST
fi
if [ -z "$GNUSTEP_HOST_CPU" ]; then
Expand Down
1 change: 1 addition & 0 deletions executable.template.in
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ fi
#
if [ -z "$GNUSTEP_HOST" ]; then
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_SYSTEM_ROOT/Makefiles/config.guess)`
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_SYSTEM_ROOT/Makefiles/config.sub $GNUSTEP_HOST)`
export GNUSTEP_HOST
fi
if [ -z "$GNUSTEP_HOST_CPU" ]; then
Expand Down
2 changes: 1 addition & 1 deletion names.make
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

ifneq ($(internal_names_clean), yes)
ifeq ($(GNUSTEP_HOST),)
GNUSTEP_HOST := $(shell (cd /tmp; $(CONFIG_GUESS_SCRIPT)))
GNUSTEP_HOST := $(shell (cd /tmp; $(CONFIG_SUB_SCRIPT) $(CONFIG_GUESS_SCRIPT)))
GNUSTEP_HOST_CPU := $(shell (cd /tmp; $(CONFIG_CPU_SCRIPT) $(GNUSTEP_HOST)))
GNUSTEP_HOST_VENDOR := $(shell (cd /tmp; $(CONFIG_VENDOR_SCRIPT) $(GNUSTEP_HOST)))
GNUSTEP_HOST_OS := $(shell (cd /tmp; $(CONFIG_OS_SCRIPT) $(GNUSTEP_HOST)))
Expand Down
1 change: 1 addition & 0 deletions openapp.in
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ fi
#
if [ -z "$GNUSTEP_HOST" ]; then
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_SYSTEM_ROOT/Makefiles/config.guess)`
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_SYSTEM_ROOT/Makefiles/config.sub $GNUSTEP_HOST)`
export GNUSTEP_HOST
fi
if [ -z "$GNUSTEP_HOST_CPU" ]; then
Expand Down
165 changes: 0 additions & 165 deletions opentool

This file was deleted.

1 change: 1 addition & 0 deletions opentool.in
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ fi
#
if [ -z "$GNUSTEP_HOST" ]; then
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_SYSTEM_ROOT/Makefiles/config.guess)`
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_SYSTEM_ROOT/Makefiles/config.sub $GNUSTEP_HOST)`
export GNUSTEP_HOST
fi
if [ -z "$GNUSTEP_HOST_CPU" ]; then
Expand Down

0 comments on commit 579575b

Please sign in to comment.