diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-07 19:18:16 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-07 19:18:16 (GMT) |
commit | 29ec750a86649e045d1038a5d589698c6e6e27fd (patch) | |
tree | aaefb738badbc192b9dd06dcc0cc27b255be87e7 | |
parent | 0f3629d913a608f43ba115064f03ad3c9f1f21ec (diff) | |
download | cpython-29ec750a86649e045d1038a5d589698c6e6e27fd.zip cpython-29ec750a86649e045d1038a5d589698c6e6e27fd.tar.gz cpython-29ec750a86649e045d1038a5d589698c6e6e27fd.tar.bz2 |
bugfix to r66283 (see issue #1204).
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8fa9ad7..ee7048b 100644 --- a/configure.in +++ b/configure.in @@ -3346,7 +3346,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]) |