diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-11-21 21:43:48 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-11-21 21:43:48 +0000 |
commit | 31f9169164c9a336520e9b4669cbd6ee17cfdb64 (patch) | |
tree | 9199c279ade23d8d41867a0098b231a4ab15aac7 /config.guess | |
parent | 51a66525e85d89acfc8118f0d222fdccc40f361c (diff) | |
download | emacs-31f9169164c9a336520e9b4669cbd6ee17cfdb64.tar.gz |
Thu Nov 21 16:42:41 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* config.guess [UNAME_SYSTEM == GNU]: Use a four-part
configuration name for gnu so it can be distinguished from
foo-foo-linux-gnu with simple globbing patterns.
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 85fb13ad18b..9b3e52aab48 100755 --- a/config.guess +++ b/config.guess @@ -397,7 +397,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-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; *:Linux:*:*) # The BFD linker knows what the default object file format is, so |