[Python-checkins] r77190 - in python/branches/py3k: configure configure.in

mark.dickinson python-checkins at python.org
Thu Dec 31 21:50:59 CET 2009


Author: mark.dickinson
Date: Thu Dec 31 21:50:59 2009
New Revision: 77190

Log:
Merged revisions 77189 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77189 | mark.dickinson | 2009-12-31 20:48:04 +0000 (Thu, 31 Dec 2009) | 1 line
  
  Add missing quotes.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/configure
   python/branches/py3k/configure.in

Modified: python/branches/py3k/configure
==============================================================================
--- python/branches/py3k/configure	(original)
+++ python/branches/py3k/configure	Thu Dec 31 21:50:59 2009
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 77032 .
+# From configure.in Revision: 77170 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 3.2.
 #
@@ -26665,7 +26665,7 @@
 echo "${ECHO_T}$ac_cv_have_long_long_format" >&6; }
 fi
 
-if test $ac_cv_have_long_long_format = yes
+if test "$ac_cv_have_long_long_format" = yes
 then
 
 cat >>confdefs.h <<\_ACEOF

Modified: python/branches/py3k/configure.in
==============================================================================
--- python/branches/py3k/configure.in	(original)
+++ python/branches/py3k/configure.in	Thu Dec 31 21:50:59 2009
@@ -3898,7 +3898,7 @@
   AC_MSG_RESULT($ac_cv_have_long_long_format)
 fi
 
-if test $ac_cv_have_long_long_format = yes
+if test "$ac_cv_have_long_long_format" = yes
 then
   AC_DEFINE(PY_FORMAT_LONG_LONG, "ll",
   [Define to printf format modifier for long long type])


More information about the Python-checkins mailing list