[Python-checkins] r52389 - python/trunk/configure python/trunk/configure.in

martin.v.loewis python-checkins at python.org
Thu Oct 19 18:01:39 CEST 2006


Author: martin.v.loewis
Date: Thu Oct 19 18:01:37 2006
New Revision: 52389

Modified:
   python/trunk/configure
   python/trunk/configure.in
Log:
Restore CFLAGS after checking for __attribute__


Modified: python/trunk/configure
==============================================================================
--- python/trunk/configure	(original)
+++ python/trunk/configure	Thu Oct 19 18:01:37 2006
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 52363 .
+# From configure.in Revision: 52387 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.59 for python 2.6.
 #
@@ -4098,6 +4098,7 @@
 
 fi
 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+  CFLAGS=$save_CFLAGS
 fi
 
 # On some compilers, pthreads are available without further options

Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in	(original)
+++ python/trunk/configure.in	Thu Oct 19 18:01:37 2006
@@ -903,6 +903,7 @@
   AC_MSG_RESULT(yes),
   AC_MSG_RESULT(no)
   )
+  CFLAGS=$save_CFLAGS
 fi
 
 # On some compilers, pthreads are available without further options


More information about the Python-checkins mailing list