diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2013-12-14 07:59:34 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2013-12-14 07:59:34 +0000 |
commit | 39ee3941702e49c9b0184ab66dc8aaa6b32284e1 (patch) | |
tree | ef088e6ba8977f763c2a1320a6fd5eec0a0ba118 /config.guess | |
parent | Update config.sub to 2013-08-10 with autotools-dev 20130810.1 (diff) | |
download | w3m-39ee3941702e49c9b0184ab66dc8aaa6b32284e1.tar.gz w3m-39ee3941702e49c9b0184ab66dc8aaa6b32284e1.zip |
Update config.guess to 2013-06-10 with autotools-dev 20130810.1
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 120cc0d..b79252d 100755 --- a/config.guess +++ b/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2013-05-16' +timestamp='2013-06-10' # 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 @@ -995,6 +995,12 @@ EOF ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} + exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; |