[Python-checkins] r66299 - python/branches/release25-maint/configure.in

gregory.p.smith python-checkins at python.org
Sun Sep 7 21:25:37 CEST 2008


Author: gregory.p.smith
Date: Sun Sep  7 21:25:37 2008
New Revision: 66299

Log:
backport r66295 from trunk (small fix to the previous backport)


Modified:
   python/branches/release25-maint/configure.in

Modified: python/branches/release25-maint/configure.in
==============================================================================
--- python/branches/release25-maint/configure.in	(original)
+++ python/branches/release25-maint/configure.in	Sun Sep  7 21:25:37 2008
@@ -3117,7 +3117,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-checkins mailing list