summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-31 20:48:04 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-12-31 20:48:04 +0000
commit5ce8474cc7e8fb602943b0ecd60cbcbc2d3b2a41 (patch)
tree53209259de5a55953c5351b87c54f3a2f2e74ab0
parentae9a0a0f272fe3492a940efd1056aee12bc22f6b (diff)
downloadcpython-git-5ce8474cc7e8fb602943b0ecd60cbcbc2d3b2a41.tar.gz
Add missing quotes.
-rwxr-xr-xconfigure4
-rw-r--r--configure.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 7b99041ba4..27fe217fd1 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 77031 .
+# From configure.in Revision: 77169 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
@@ -27376,7 +27376,7 @@ fi
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
diff --git a/configure.in b/configure.in
index 6f05f7578d..8f7d28a36f 100644
--- a/configure.in
+++ b/configure.in
@@ -4046,7 +4046,7 @@ then
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])