diff options
author | Thomas Bushnell, n/BSG <thomas@gnu.org> | 1996-11-21 21:43:48 +0000 |
---|---|---|
committer | Thomas Bushnell, n/BSG <thomas@gnu.org> | 1996-11-21 21:43:48 +0000 |
commit | 3f8d007ecc47b6b70e13d13dfe1e07ad30c4bcdc (patch) | |
tree | 75555b86b511828fc931c7b72c0cdf7b36348a2b /gcc | |
parent | 885c9a395a444eb03053a2cae0e5316981b823db (diff) | |
download | gcc-3f8d007ecc47b6b70e13d13dfe1e07ad30c4bcdc.zip gcc-3f8d007ecc47b6b70e13d13dfe1e07ad30c4bcdc.tar.gz gcc-3f8d007ecc47b6b70e13d13dfe1e07ad30c4bcdc.tar.bz2 |
config.guess [...]: Use a four-part configuration name for gnu so it can be distinguished from...
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.
From-SVN: r13214
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/config.guess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index 85fb13a..9b3e52a 100755 --- a/gcc/config.guess +++ b/gcc/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 |