diff options
author | Miles Bader <miles@gnu.org> | 1997-01-05 03:44:26 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-01-05 03:44:26 +0000 |
commit | 96cdf226f14bf6e5cbf8e009e8ffef63e7ef422d (patch) | |
tree | d37a4c183cb5399d05ef6f26072c25ae46ab7203 /config.guess | |
parent | 467ff6923479331bb5b4cc5d7c87232d83682984 (diff) | |
download | emacs-96cdf226f14bf6e5cbf8e009e8ffef63e7ef422d.tar.gz |
(*:GNU:*:*):
The machine/subtype separator printed by uname -m is now `-', not '/'.
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 92a6adcefb1..519bc01c1e0 100755 --- a/config.guess +++ b/config.guess @@ -400,7 +400,7 @@ EOF echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) - echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo `echo ${UNAME_MACHINE}|sed -e 's,-.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; *:Linux:*:*) # The BFD linker knows what the default object file format is, so |