1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

fix for distcheck

configure.in:
  fix the test for distcheck
This commit is contained in:
unknown
2006-04-13 09:57:51 +02:00
parent 1f0612d869
commit 328778a1f1
2 changed files with 3 additions and 2 deletions

View File

@@ -2336,7 +2336,8 @@ AC_ARG_WITH(libedit,
[ with_libedit=$withval ], [ with_libedit=$withval ],
[ with_libedit=undefined ] [ with_libedit=undefined ]
) )
if test -z "$with_readline$with_libedit" -a ! -e cmd-line-utils
if test "$with_readline/$with_libedit" = "undefined/undefined" -a ! -e "$srcdir/cmd-line-utils"
then then
with_readline=no with_readline=no
with_libedit=no with_libedit=no

View File

@@ -80,7 +80,7 @@ inline int lex_casecmp(const char *s, const char *t, uint len)
return (int) len+1; return (int) len+1;
} }
#include "lex_hash.h" #include <lex_hash.h>
void lex_init(void) void lex_init(void)