mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-30 11:06:36 +12:00
2000-10-03 Ben Elliston <bje@redhat.com>
* config.guess: Do not hold ld's output in a shell variable; feed the output directly into the command pipline to avoid a limitation in variable lengths in ash(1). From Pavel Roskin <proski@gnu.org>.
This commit is contained in:
parent
e1eeb80e86
commit
5604c016e7
@ -1,3 +1,9 @@
|
|||||||
|
2000-10-03 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
|
* config.guess: Do not hold ld's output in a shell variable; feed
|
||||||
|
the output directly into the command pipline to avoid a limitation
|
||||||
|
in variable lengths in ash(1). From Pavel Roskin <proski@gnu.org>.
|
||||||
|
|
||||||
2000-09-11 Ben Elliston <bje@redhat.com>
|
2000-09-11 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
* config.sub: Handle nsk*.
|
* config.sub: Handle nsk*.
|
||||||
|
9
config.guess
vendored
9
config.guess
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
version='2000-09-05'
|
version='2000-10-03'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# This file is free software; you can redistribute it and/or modify it
|
||||||
# under the terms of the GNU General Public License as published by
|
# under the terms of the GNU General Public License as published by
|
||||||
@ -698,8 +698,7 @@ EOF
|
|||||||
# The BFD linker knows what the default object file format is, so
|
# The BFD linker knows what the default object file format is, so
|
||||||
# first see if it will tell us. cd to the root directory to prevent
|
# first see if it will tell us. cd to the root directory to prevent
|
||||||
# problems with other programs or directories called `ld' in the path.
|
# problems with other programs or directories called `ld' in the path.
|
||||||
ld_help_string=`cd /; ld --help 2>&1`
|
ld_supported_emulations=`cd /; ld --help 2>&1 \
|
||||||
ld_supported_emulations=`echo $ld_help_string \
|
|
||||||
| sed -ne '/supported emulations:/!d
|
| sed -ne '/supported emulations:/!d
|
||||||
s/[ ][ ]*/ /g
|
s/[ ][ ]*/ /g
|
||||||
s/.*supported emulations: *//
|
s/.*supported emulations: *//
|
||||||
@ -866,8 +865,8 @@ EOF
|
|||||||
# GCC wants to distinguish between linux-gnuoldld and linux-gnuaout.
|
# GCC wants to distinguish between linux-gnuoldld and linux-gnuaout.
|
||||||
# If ld does not provide *any* "supported emulations:"
|
# If ld does not provide *any* "supported emulations:"
|
||||||
# that means it is gnuoldld.
|
# that means it is gnuoldld.
|
||||||
echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:"
|
test -z "$ld_supported_emulations" \
|
||||||
test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
|
&& echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
|
||||||
|
|
||||||
case "${UNAME_MACHINE}" in
|
case "${UNAME_MACHINE}" in
|
||||||
i?86)
|
i?86)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user