diff options
author | unknown <guilhem@mysql.com> | 2004-08-14 15:24:40 +0200 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2004-08-14 15:24:40 +0200 |
commit | f95c6fb5c0395eb6a477f9d4e3bbf87360d92e7b (patch) | |
tree | eb5dbb938ab6402e8b4de852941d89eae9072121 /mysql-test | |
parent | 621506815f343abc29ab1b8a89adc757f6e32bf9 (diff) | |
download | mariadb-git-f95c6fb5c0395eb6a477f9d4e3bbf87360d92e7b.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.
mysql-test/Makefile.am:
The binlog files we use for some tests must be installed like other mysql-test/std_data/ files.
Putting a * before 001 so that it works for 6-digit extensions of 4.1.
Diffstat (limited to 'mysql-test')
-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 |