diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 2001-01-17 09:42:21 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 2001-01-17 09:42:21 (GMT) |
commit | 124698cbb09ac27e6b90c836bd0afd4561f23b37 (patch) | |
tree | 1dc3b8d2a451171a6d06c119c4386bc9029abcf1 /configure | |
parent | 79b334ba55f3d0ab7e8f453fe1948f609a3fc6e0 (diff) | |
download | cpython-124698cbb09ac27e6b90c836bd0afd4561f23b37.zip cpython-124698cbb09ac27e6b90c836bd0afd4561f23b37.tar.gz cpython-124698cbb09ac27e6b90c836bd0afd4561f23b37.tar.bz2 |
Fixed typo: Using --with-dbm had no effect because due to a typo it
was never enabled.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.189 +# From configure.in Revision: 1.190 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -4058,7 +4058,7 @@ fi # enabled by default but one of the dbm.h files must be found -if test "$ac_cv_header_dbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes" +if test "$ac_cv_header_ndbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes" then if test "$with_dbm" != "no" then with_dbm="yes" |