diff options
author | unknown <joerg@trift2.> | 2007-07-17 16:25:32 +0200 |
---|---|---|
committer | unknown <joerg@trift2.> | 2007-07-17 16:25:32 +0200 |
commit | e44d995fa92c562e71e7fe65d6054e0383f493a0 (patch) | |
tree | b12c37aeea16614f7635303ed3d6a7bc3e2d1790 /scripts/make_binary_distribution.sh | |
parent | 0cbe9a284cf535a6c438949d698e1e324074c2ca (diff) | |
download | mariadb-git-e44d995fa92c562e71e7fe65d6054e0383f493a0.tar.gz |
Ensure "mysql-stress-test.pl" is included in both "tar.gz" and RPM packages.
Fixing bug#21023: "mysql-stress-test.pl" missing in builds
mysql-test/Makefile.am:
Ensure "mysql-stress-test.pl" is handled by "make install" in the "mysql-test" directory.
This should get the script into the result tree of a RPM build.
Fixing bug#21023.
scripts/make_binary_distribution.sh:
Copy "mysql-test/mysql-stress-test.pl" into a binary distribution ("tar.gz" and derived formats).
Fixing bug#21023.
Diffstat (limited to 'scripts/make_binary_distribution.sh')
-rw-r--r-- | scripts/make_binary_distribution.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 77f51c51c19..94b4019cd1e 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -284,7 +284,8 @@ rm -f $MYSQL_SHARE/Makefile* $MYSQL_SHARE/*/*.OLD copyfileto $BASE/mysql-test \ mysql-test/mysql-test-run mysql-test/install_test_db \ mysql-test/mysql-test-run.pl mysql-test/README \ - mysql-test/valgrind.supp \ + mysql-test/mysql-stress-test.pl \ + mysql-test/valgrind.supp \ netware/mysql_test_run.nlm netware/install_test_db.ncf $CP mysql-test/lib/*.pl $BASE/mysql-test/lib |