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

gregory.p.smith python-3000-checkins at python.org
Sun Sep 7 21:23:19 CEST 2008


Author: gregory.p.smith
Date: Sun Sep  7 21:23:19 2008
New Revision: 66297

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

........
  r66295 | gregory.p.smith | 2008-09-07 12:18:16 -0700 (Sun, 07 Sep 2008)
  
  bugfix to r66283 (see issue #1204).
........


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

Modified: python/branches/py3k/configure.in
==============================================================================
--- python/branches/py3k/configure.in	(original)
+++ python/branches/py3k/configure.in	Sun Sep  7 21:23:19 2008
@@ -3242,7 +3242,7 @@
 done
 # Uncomment this line if you want to use READINE_LIBS in Makefile or scripts
 #AC_SUBST([READLINE_LIBS])
-if test $py_cv_lib_readline = !yes; then
+if test $py_cv_lib_readline = no; then
   AC_MSG_RESULT([none])
 else
   AC_MSG_RESULT([$READLINE_LIBS])


More information about the Python-3000-checkins mailing list