diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-05-26 23:35:19 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-05-26 23:35:19 +0000 |
commit | 537560410013b6ed86b50a5b738dbc47d8607de5 (patch) | |
tree | 6e8a65cfa5ad4ed3fbbfb19fb823a4a629ee0cf8 /config.guess | |
parent | 6a936870d64e4fb1664d6f5420d484c366ef3969 (diff) | |
download | gdb-537560410013b6ed86b50a5b738dbc47d8607de5.zip gdb-537560410013b6ed86b50a5b738dbc47d8607de5.tar.gz gdb-537560410013b6ed86b50a5b738dbc47d8607de5.tar.bz2 |
* config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
the processor rather than assuming i486.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.guess b/config.guess index c2641df..7693163 100755 --- a/config.guess +++ b/config.guess @@ -113,7 +113,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in echo ${UNAME_MACHINE}-unknown-linux exit 0 ;; i[34]86:UNIX_SV:4.*:*) - echo i486-unknown-sysv4 + echo ${UNAME_MACHINE}-unknown-sysv4 exit 0 ;; i[34]86:*:3.2:*) if /bin/uname -X 2>/dev/null >/dev/null ; then |