summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch')
-rw-r--r--meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch16
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch b/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch
index e7af88654d..fe0aa8aabe 100644
--- a/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch
+++ b/meta/recipes-devtools/python/python3/0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch
@@ -1,4 +1,4 @@
1From 7535c39951b9d15dd64c4669092a8582ba555466 Mon Sep 17 00:00:00 2001 1From 2581ebe3cd9686089aed223651e1b8bf0b862b48 Mon Sep 17 00:00:00 2001
2From: Matthias Schoepfer <matthias.schoepfer@ithinx.io> 2From: Matthias Schoepfer <matthias.schoepfer@ithinx.io>
3Date: Fri, 31 May 2019 15:34:34 +0200 3Date: Fri, 31 May 2019 15:34:34 +0200
4Subject: [PATCH] bpo-36852: proper detection of mips architecture for soft 4Subject: [PATCH] bpo-36852: proper detection of mips architecture for soft
@@ -12,15 +12,16 @@ to do this in a more autoconf/autotools manner.
12 12
13Upstream-Status: Submitted [https://github.com/python/cpython/pull/13196] 13Upstream-Status: Submitted [https://github.com/python/cpython/pull/13196]
14Signed-off-by: Matthias Schoepfer <matthias.schoepfer@ithinx.io> 14Signed-off-by: Matthias Schoepfer <matthias.schoepfer@ithinx.io>
15
15--- 16---
16 configure.ac | 169 ++++++--------------------------------------------- 17 configure.ac | 171 +++++----------------------------------------------
17 1 file changed, 17 insertions(+), 152 deletions(-) 18 1 file changed, 17 insertions(+), 154 deletions(-)
18 19
19diff --git a/configure.ac b/configure.ac 20diff --git a/configure.ac b/configure.ac
20index a7de901e08..a73e2de51b 100644 21index 0f85486..0ca7e24 100644
21--- a/configure.ac 22--- a/configure.ac
22+++ b/configure.ac 23+++ b/configure.ac
23@@ -727,158 +727,23 @@ fi 24@@ -704,160 +704,23 @@ fi
24 MULTIARCH=$($CC --print-multiarch 2>/dev/null) 25 MULTIARCH=$($CC --print-multiarch 2>/dev/null)
25 AC_SUBST(MULTIARCH) 26 AC_SUBST(MULTIARCH)
26 27
@@ -163,6 +164,8 @@ index a7de901e08..a73e2de51b 100644
163- i386-gnu 164- i386-gnu
164-#elif defined(__APPLE__) 165-#elif defined(__APPLE__)
165- darwin 166- darwin
167-#elif defined(__VXWORKS__)
168- vxworks
166-#else 169-#else
167-# error unknown platform triplet 170-# error unknown platform triplet
168-#endif 171-#endif
@@ -196,6 +199,3 @@ index a7de901e08..a73e2de51b 100644
196 199
197 if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then 200 if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
198 if test x$PLATFORM_TRIPLET != x$MULTIARCH; then 201 if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
199--
2002.21.0
201