diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-07 19:23:19 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-07 19:23:19 (GMT) |
commit | 9751591209eb03f60c6b39f1e2f11631574094b9 (patch) | |
tree | 230f1f289ae4722d3f336fd0ca1b5d3f5ca7b49c /configure.in | |
parent | 207f2113d87d226147ed559de86f116c4cc6f6f3 (diff) | |
download | cpython-9751591209eb03f60c6b39f1e2f11631574094b9.zip cpython-9751591209eb03f60c6b39f1e2f11631574094b9.tar.gz cpython-9751591209eb03f60c6b39f1e2f11631574094b9.tar.bz2 |
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).
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7f3b9f7..fe3c344 100644 --- a/configure.in +++ b/configure.in @@ -3242,7 +3242,7 @@ for py_libtermcap in "" ncursesw ncurses curses termcap; do 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]) |