diff options
author | Georgi Kodinov <joro@sun.com> | 2010-02-12 18:28:35 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2010-02-12 18:28:35 +0200 |
commit | 792fc9f7844575675206f873a0fa1d6e7fb8ad4f (patch) | |
tree | 77d9d42655f4fa3afa8bb69d7aa15e174b617cad /configure.in | |
parent | 6f78ef71d485fb3968355941860d012fc17a9c59 (diff) | |
download | mariadb-git-792fc9f7844575675206f873a0fa1d6e7fb8ad4f.tar.gz |
Bug #35250: readline check breaks when doing vpath build
Fixed several (obvious) places that don't work with vpath
build.
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 88e0ebf1faa..45f86677a86 100644 --- a/configure.in +++ b/configure.in @@ -2711,7 +2711,7 @@ case $SYSTEM_TYPE in fi # if there is no readline, but we want to build with readline, we fail - if [test "$want_to_use_readline" = "yes"] && [test ! -d "./cmd-line-utils/readline"] + if [test "$want_to_use_readline" = "yes"] && [test ! -d "$srcdir/cmd-line-utils/readline"] then AC_MSG_ERROR([This commercially licensed MySQL source package can't be built with libreadline. Please use --with-libedit to use |