summaryrefslogtreecommitdiff
path: root/autoconf/config.guess
diff options
context:
space:
mode:
authorIvan Krasin <krasin@chromium.org>2011-08-23 06:43:49 +0000
committerIvan Krasin <krasin@chromium.org>2011-08-23 06:43:49 +0000
commit9976bac3857fc4b6fb1386d08114738b108cf3ed (patch)
treee48b08a7d6df23c88c3e68b26b3642bf769d159f /autoconf/config.guess
parenta534780da0b369d9e6801922605113ea86b55324 (diff)
downloadllvm-9976bac3857fc4b6fb1386d08114738b108cf3ed.tar.gz
llvm-9976bac3857fc4b6fb1386d08114738b108cf3ed.tar.bz2
llvm-9976bac3857fc4b6fb1386d08114738b108cf3ed.tar.xz
Update config.sub, config.guess and configure.
The motivation to do that: 1. Now, llvm would use the stock config.sub. Before that we had an uncommitted FreeBSD-related patch. Now, it has been upstreamed and comes back. It means that it would be easier to update these files in the next time (less magic knowledge) 2. Fix a typo for pseudo-CPUs: 32e[lb] -> [lb]e32, 64e[lb]->[lb]64. One of these CPUs is used for PNaCl and it was not really convenient to have a CPU that starts with a digit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138323 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/config.guess')
-rwxr-xr-xautoconf/config.guess4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/config.guess b/autoconf/config.guess
index 2d4581a62d..f7dd69ecc9 100755
--- a/autoconf/config.guess
+++ b/autoconf/config.guess
@@ -4,7 +4,7 @@
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
# 2011 Free Software Foundation, Inc.
-timestamp='2011-08-17'
+timestamp='2011-08-20'
# 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
@@ -793,7 +793,7 @@ EOF
exit ;;
*:FreeBSD:*:*)
UNAME_PROCESSOR=`/usr/bin/uname -p`
- case ${UNAME_MACHINE} in
+ case ${UNAME_PROCESSOR} in
amd64)
echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
*)