diff options
author | 2019-09-08 18:17:21 -0400 | |
---|---|---|
committer | 2019-09-11 23:24:44 -0400 | |
commit | 9841d1b2fda2865dc9e36a8b4402cc5d9338744c (patch) | |
tree | f07199ab28bdc8405eaddfa0e5f99ac98da4b15b /sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch | |
parent | sys-devel/gnuconfig: sync live vcs & non-vcs changes (diff) | |
download | gentoo-9841d1b2fda2865dc9e36a8b4402cc5d9338744c.tar.gz gentoo-9841d1b2fda2865dc9e36a8b4402cc5d9338744c.tar.bz2 gentoo-9841d1b2fda2865dc9e36a8b4402cc5d9338744c.zip |
sys-devel/gnuconfig: rebase onto latest upstream git
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch')
-rw-r--r-- | sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch b/sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch index 2c69f57878eb..5a696d1c4b4e 100644 --- a/sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch +++ b/sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch @@ -1,4 +1,4 @@ -From 8474d78c459f4ec8f8930094faeaacb2b77bf68f Mon Sep 17 00:00:00 2001 +From 42ebd93d96cd060141e37d9d6601ca1e7d21040d Mon Sep 17 00:00:00 2001 From: "H.J. Lu" <hongjiu.lu@intel.com> Date: Fri, 20 Dec 2013 14:36:01 -0500 Subject: [PATCH] Add x32 support to config.guess @@ -16,15 +16,15 @@ URL: http://gcc.gnu.org/ml/gcc-patches/2012-08/msg01083.html 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/config.guess b/config.guess -index fddac42..17a4f70 100755 +index 97ad0733304d..92f16126465f 100755 --- a/config.guess +++ b/config.guess -@@ -1038,7 +1038,18 @@ EOF - echo ${UNAME_MACHINE}-dec-linux-${LIBC} +@@ -1090,7 +1090,18 @@ EOF + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) -- echo ${UNAME_MACHINE}-pc-linux-${LIBC} -+ eval $set_cc_for_build +- echo "$UNAME_MACHINE"-pc-linux-"$LIBC" ++ set_cc_for_build + X86_64_ABI= + # If there is a compiler, see if it is configured for 32-bit objects. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then @@ -35,10 +35,10 @@ index fddac42..17a4f70 100755 + X86_64_ABI=x32 + fi + fi -+ echo ${UNAME_MACHINE}-pc-linux-${LIBC}${X86_64_ABI} ++ echo "$UNAME_MACHINE"-pc-linux-"$LIBC$X86_64_ABI" exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" -- -2.4.4 +2.19.1 |