[Python-checkins] cpython: #22980: fix triplet configure test for powerpc-linux-gnu

matthias.klose python-checkins at python.org
Wed Apr 15 23:31:07 CEST 2015


https://hg.python.org/cpython/rev/948745d0d9cf
changeset:   95681:948745d0d9cf
user:        doko at ubuntu.com
date:        Wed Apr 15 23:31:02 2015 +0200
summary:
  #22980: fix triplet configure test for powerpc-linux-gnu

files:
  configure    |  1 +
  configure.ac |  1 +
  2 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -5071,6 +5071,7 @@
 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
--- a/configure.ac
+++ b/configure.ac
@@ -730,6 +730,7 @@
 cat >> conftest.c <<EOF
 #undef linux
 #undef i386
+#undef powerpc
 #undef unix
 #if defined(__linux__)
 # if defined(__x86_64__) && defined(__LP64__)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list