diff options
author | guilhem@mysql.com <> | 2004-08-14 15:24:40 +0200 |
---|---|---|
committer | guilhem@mysql.com <> | 2004-08-14 15:24:40 +0200 |
commit | 4a96a8a64fba89eabe559361f4c790113f2e8765 (patch) | |
tree | eb5dbb938ab6402e8b4de852941d89eae9072121 | |
parent | c9a46a43d274957f5faed3a9e0ed33e02407bb64 (diff) | |
download | mariadb-git-4a96a8a64fba89eabe559361f4c790113f2e8765.tar.gz |
Fix for BUG#5050 "mysql-test-run fails on rpl_trunc_binlog after 'make install'":
The binlog files we use for some tests must be installed like other mysql-test/std_data/ files.
-rw-r--r-- | mysql-test/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/Makefile.am b/mysql-test/Makefile.am index 66f931133e3..ba96c5947ba 100644 --- a/mysql-test/Makefile.am +++ b/mysql-test/Makefile.am @@ -48,6 +48,7 @@ install-data-local: $(INSTALL_DATA) $(srcdir)/r/*.require $(DESTDIR)$(testdir)/r $(INSTALL_DATA) $(srcdir)/include/*.inc $(DESTDIR)$(testdir)/include $(INSTALL_DATA) $(srcdir)/std_data/*.dat $(DESTDIR)$(testdir)/std_data + $(INSTALL_DATA) $(srcdir)/std_data/*.*001 $(DESTDIR)$(testdir)/std_data $(INSTALL_DATA) $(srcdir)/std_data/des_key_file $(DESTDIR)$(testdir)/std_data SUFFIXES = .sh |