Make BerkeleyDB configuration work.

acinclude.m4:
  - fixed typo that was breaking BDB configuration
This commit is contained in:
unknown 2000-08-03 18:42:33 -04:00
parent 2210ff6a2c
commit 62d9bd5da3

View File

@ -739,7 +739,7 @@ dnl echo ["MYSQL_CHECK_BDB_DIR ($1)"]
MYSQL_CHECK_INSTALLED_BDB([$dir/include], [$dir/lib]) MYSQL_CHECK_INSTALLED_BDB([$dir/include], [$dir/lib])
if test X"bdb_dir_ok" != Xinstalled; then if test X"$bdb_dir_ok" != Xinstalled; then
# test to see if it's a source dir # test to see if it's a source dir
rel="$dir/dist/RELEASE" rel="$dir/dist/RELEASE"
if test -f "$rel"; then if test -f "$rel"; then
@ -754,8 +754,7 @@ dnl echo ["MYSQL_CHECK_BDB_DIR ($1)"]
bdb_dir_ok="$bdb_version_ok" bdb_dir_ok="$bdb_version_ok"
fi fi
else else
# bdb_dir_ok="'$dir' doesn't look like a BDB directory" bdb_dir_ok="'$dir' doesn't look like a BDB directory ($bdb_dir_ok)"
bdb_dir_ok="installed"
fi fi
fi fi
]) ])