diff options
author | Matthias Klose <doko@ubuntu.com> | 2009-04-29 19:52:49 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2009-04-29 19:52:49 (GMT) |
commit | 51c614e3bf7623959ef029a434ee7aa7d77c219d (patch) | |
tree | 3369315a4d63350ff1e4f41f094b84bdd255fd63 /configure.in | |
parent | 10cbe4886e796ccb8e38bb4d93265ff50c8a761f (diff) | |
download | cpython-51c614e3bf7623959ef029a434ee7aa7d77c219d.zip cpython-51c614e3bf7623959ef029a434ee7aa7d77c219d.tar.gz cpython-51c614e3bf7623959ef029a434ee7aa7d77c219d.tar.bz2 |
- Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify
the order that backends for the dbm extension are checked.
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 2c6cb52..282861a 100644 --- a/configure.in +++ b/configure.in @@ -1921,7 +1921,7 @@ AC_MSG_RESULT($with_system_ffi) # Check for --with-dbmliborder AC_MSG_CHECKING(for --with-dbmliborder) AC_ARG_WITH(dbmliborder, - AC_HELP_STRING(--with-dbmliborder=db1:db2:..., order to check db backends for dbm), + AC_HELP_STRING([--with-dbmliborder=db1:db2:...], [order to check db backends for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.]), [ if test x$with_dbmliborder = xyes then |