summaryrefslogtreecommitdiff
path: root/sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-09-13 17:49:31 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-09-13 17:49:31 +0100
commit36ac65103bf5503e5bad1ecc7e8cb9e7643f6840 (patch)
treed9d1fbc20509d4c90f57fb2d9e1459bc8034c831 /sys-devel/gnuconfig/files/99999999/0002-Add-x32-support-to-config.guess.patch
parenta1392efe64137262023d92492396ca9156d22396 (diff)
Revert "gentoo resync : 13.09.2019"
This reverts commit a1392efe64137262023d92492396ca9156d22396.
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.patch18
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 5a696d1c4b4e..2c69f57878eb 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 42ebd93d96cd060141e37d9d6601ca1e7d21040d Mon Sep 17 00:00:00 2001
+From 8474d78c459f4ec8f8930094faeaacb2b77bf68f 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 97ad0733304d..92f16126465f 100755
+index fddac42..17a4f70 100755
--- a/config.guess
+++ b/config.guess
-@@ -1090,7 +1090,18 @@ EOF
- echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
+@@ -1038,7 +1038,18 @@ EOF
+ echo ${UNAME_MACHINE}-dec-linux-${LIBC}
exit ;;
x86_64:Linux:*:*)
-- echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
-+ set_cc_for_build
+- echo ${UNAME_MACHINE}-pc-linux-${LIBC}
++ eval $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 97ad0733304d..92f16126465f 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.19.1
+2.4.4