diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-06 22:20:11 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-06 22:20:11 +0300 |
commit | cbb0dc14ccd3ff932edf5a29aa6af0ac210be4b9 (patch) | |
tree | c1cde424f5333f37da341972b63a2e9c323f4f39 /libmysql/Makefile.am | |
parent | 95417c335edf9c5aec9d85e0693ee7012ae001d1 (diff) | |
download | mariadb-git-cbb0dc14ccd3ff932edf5a29aa6af0ac210be4b9.tar.gz |
Fixed problem with make distcheck
Fixed bug in automatic repair of MyISAM tables where table cache was not locked properly
Docs/manual.texi:
Changelog
libmysql/Makefile.am:
Fixed problem with make distcheck
libmysql/Makefile.shared:
Fixed problem with make distcheck
sql/sql_base.cc:
Fixed bug in automatic repair where table cache was not locked properly.
strings/Makefile.am:
Fixed problem with make distcheck
Diffstat (limited to 'libmysql/Makefile.am')
-rw-r--r-- | libmysql/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmysql/Makefile.am b/libmysql/Makefile.am index 68c2022223e..85bca62d19c 100644 --- a/libmysql/Makefile.am +++ b/libmysql/Makefile.am @@ -44,6 +44,10 @@ link_sources: rm -f $(srcdir)/$$f; \ @LN_CP_F@ $(srcdir)/../strings/$$f $(srcdir)/$$f; \ done; \ + for f in $(mystringsgen); do \ + rm -f $(srcdir)/$$f; \ + @LN_CP_F@ ../strings/$$f $(srcdir)/$$f; \ + done; \ for f in $$ds; do \ rm -f $(srcdir)/$$f; \ @LN_CP_F@ $(srcdir)/../dbug/$$f $(srcdir)/$$f; \ |