diff options
author | unknown <gkodinov/kgeorge@magare.gmz> | 2008-05-14 13:32:09 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@magare.gmz> | 2008-05-14 13:32:09 +0300 |
commit | 7cdbaa8e8c249ccad04787c7923f7285ca9427c3 (patch) | |
tree | a83fb49db14e4a32a04707c9d26894d3642e5beb | |
parent | 80c6f346b73ad1b7e5e231892fff7702b9184406 (diff) | |
parent | 7f555041e00c5b47e86e5244726b78575b4ec61d (diff) | |
download | mariadb-git-clone-5.0.62-build.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0mysql-5.0.62clone-5.0.62-build
into magare.gmz:/home/kgeorge/mysql/work/merge-5.0-bugteam
-rw-r--r-- | scripts/make_binary_distribution.sh | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 68af030f17a..50cff8578c9 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -293,21 +293,15 @@ $CP mysql-test/t/*.def $BASE/mysql-test/t $CP mysql-test/include/*.inc $BASE/mysql-test/include $CP mysql-test/include/*.test $BASE/mysql-test/include $CP mysql-test/t/*.def $BASE/mysql-test/t -$CP mysql-test/std_data/*.dat mysql-test/std_data/*.frm \ - mysql-test/std_data/*.MYD mysql-test/std_data/*.MYI \ - mysql-test/std_data/*.pem mysql-test/std_data/Moscow_leap \ - mysql-test/std_data/Index.xml \ - mysql-test/std_data/des_key_file mysql-test/std_data/*.*001 \ - mysql-test/std_data/*.cnf mysql-test/std_data/*.MY* \ - $BASE/mysql-test/std_data $CP mysql-test/t/*.test mysql-test/t/*.imtest \ mysql-test/t/*.disabled mysql-test/t/*.opt \ mysql-test/t/*.slave-mi mysql-test/t/*.sh mysql-test/t/*.sql $BASE/mysql-test/t $CP mysql-test/r/*.result mysql-test/r/*.require \ $BASE/mysql-test/r -# Copy the additional suites "as is", they are in flux -$tar cf - mysql-test/suite | ( cd $BASE ; $tar xf - ) +# Copy the additional suites and data "as is", they are in flux +$tar cf - mysql-test/suite | ( cd $BASE ; $tar xf - ) +$tar cf - mysql-test/std_data | ( cd $BASE ; $tar xf - ) # Clean up if we did this from a bk tree if [ -d mysql-test/SCCS ] ; then find $BASE/mysql-test -name SCCS -print | xargs rm -rf |