common/autoconf/build-aux/config.guess

Tue, 03 Jul 2012 16:11:12 -0700

author
erikj
date
Tue, 03 Jul 2012 16:11:12 -0700
changeset 458
c8d320b48626
parent 425
e1830598f0b7
child 478
2ba6f4da4bf3
permissions
-rw-r--r--

7181504: Update of latest build-infra Makefiles
Reviewed-by: ohair

erikj@458 1 #!/bin/sh
erikj@458 2 #
erikj@458 3 # Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
erikj@458 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
erikj@458 5 #
erikj@458 6 # This code is free software; you can redistribute it and/or modify it
erikj@458 7 # under the terms of the GNU General Public License version 2 only, as
erikj@458 8 # published by the Free Software Foundation.
erikj@458 9 #
erikj@458 10 # This code is distributed in the hope that it will be useful, but WITHOUT
erikj@458 11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
erikj@458 12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
erikj@458 13 # version 2 for more details (a copy is included in the LICENSE file that
erikj@458 14 # accompanied this code).
erikj@458 15 #
erikj@458 16 # You should have received a copy of the GNU General Public License version
erikj@458 17 # 2 along with this work; if not, write to the Free Software Foundation,
erikj@458 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
erikj@458 19 #
erikj@458 20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
erikj@458 21 # or visit www.oracle.com if you need additional information or have any
erikj@458 22 # questions.
erikj@458 23 #
ohair@425 24
erikj@458 25 # This is a wrapper for the config.guess from autoconf. The latter does not properly
erikj@458 26 # detect amd64 systems, since that require isainfo instead of uname. Instead of patching
erikj@458 27 # the autoconf system (which might easily get lost in a future update), we wrap it and
erikj@458 28 # fix the broken property, if needed.
ohair@425 29
erikj@458 30 DIR=`dirname $0`
erikj@458 31 OUT=`. $DIR/autoconf-config.guess`
erikj@458 32 echo $OUT | grep i386-pc-solaris > /dev/null 2> /dev/null
erikj@458 33 if test $? = 0; then
erikj@458 34 # isainfo -n returns either i386 or amd64 on Intel systems
erikj@458 35 REAL_CPU=`isainfo -n`
erikj@458 36 OUT=$REAL_CPU`echo $OUT | sed -e 's/[^-]*//'`
ohair@425 37 fi
erikj@458 38 echo $OUT

mercurial