diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2003-01-22 20:51:51 +0400 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2003-01-22 20:51:51 +0400 |
commit | 5ff1498c1e375a18eaf20b2c26911af82d8ef981 (patch) | |
tree | 50de7c53b4de82f13e604e4705e31ab75caf2d94 /configure.in | |
parent | be36a5c916a1a77c0903183464dbaab25f5cb53b (diff) | |
download | mariadb-git-5ff1498c1e375a18eaf20b2c26911af82d8ef981.tar.gz |
correction for compiling on Linux Suse 7.2
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 5a4456387ae..be18ef2ada9 100644 --- a/configure.in +++ b/configure.in @@ -2461,16 +2461,19 @@ AC_SUBST(GXX) if test "$compile_readline" = "yes" then - AC_OUTPUT(cmd-line-utils/Makefile) AC_OUTPUT(cmd-line-utils/readline/Makefile) fi if test "$compile_libedit" = "yes" then - AC_OUTPUT(cmd-line-utils/Makefile) AC_OUTPUT(cmd-line-utils/libedit/Makefile) fi +if [test "$compile_libedit" = "yes"] || [test "$compile_readline" = "yes"] +then + AC_OUTPUT(cmd-line-utils/Makefile) +fi + AC_OUTPUT(Makefile extra/Makefile mysys/Makefile isam/Makefile \ strings/Makefile regex/Makefile heap/Makefile \ bdb/Makefile \ |