diff options
author | unknown <tim@localhost.polyesthetic.msg> | 2000-08-03 18:42:33 -0400 |
---|---|---|
committer | unknown <tim@localhost.polyesthetic.msg> | 2000-08-03 18:42:33 -0400 |
commit | 62d9bd5da37fa05f0d681a37c1ceb057e82c0f74 (patch) | |
tree | 9e848d90476b398e77819838aceeb4ebe4142a73 /acinclude.m4 | |
parent | 2210ff6a2cf99fe57760643cdcaa514c85dd8368 (diff) | |
download | mariadb-git-62d9bd5da37fa05f0d681a37c1ceb057e82c0f74.tar.gz |
Make BerkeleyDB configuration work.
acinclude.m4:
- fixed typo that was breaking BDB configuration
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 0c557f20138..4ed69bda027 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -739,7 +739,7 @@ dnl echo ["MYSQL_CHECK_BDB_DIR ($1)"] 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 rel="$dir/dist/RELEASE" if test -f "$rel"; then @@ -754,8 +754,7 @@ dnl echo ["MYSQL_CHECK_BDB_DIR ($1)"] bdb_dir_ok="$bdb_version_ok" fi else - # bdb_dir_ok="'$dir' doesn't look like a BDB directory" - bdb_dir_ok="installed" + bdb_dir_ok="'$dir' doesn't look like a BDB directory ($bdb_dir_ok)" fi fi ]) |