summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2015-04-15 21:31:02 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2015-04-15 21:31:02 (GMT)
commit9abe04975a1948f85c16896dcd68e7cf26bb593e (patch)
treeb96184c44809aa3f2c352dc5488f0780bca73938
parent4171bbe687904582329c7977d571686953275b45 (diff)
downloadcpython-9abe04975a1948f85c16896dcd68e7cf26bb593e.zip
cpython-9abe04975a1948f85c16896dcd68e7cf26bb593e.tar.gz
cpython-9abe04975a1948f85c16896dcd68e7cf26bb593e.tar.bz2
#22980: fix triplet configure test for powerpc-linux-gnu
-rwxr-xr-xconfigure1
-rw-r--r--configure.ac1
2 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 473f6b2..46f8287 100755
--- a/configure
+++ b/configure
@@ -5071,6 +5071,7 @@ $as_echo_n "checking for the platform triplet based on compiler characteristics.
cat >> conftest.c <<EOF
#undef linux
#undef i386
+#undef powerpc
#undef unix
#if defined(__linux__)
# if defined(__x86_64__) && defined(__LP64__)
diff --git a/configure.ac b/configure.ac
index aab01a4..26d7b36 100644
--- a/configure.ac
+++ b/configure.ac
@@ -730,6 +730,7 @@ AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
cat >> conftest.c <<EOF
#undef linux
#undef i386
+#undef powerpc
#undef unix
#if defined(__linux__)
# if defined(__x86_64__) && defined(__LP64__)