diff options
author | Joerg Bruehe <joerg@mysql.com> | 2010-06-17 19:55:21 +0200 |
---|---|---|
committer | Joerg Bruehe <joerg@mysql.com> | 2010-06-17 19:55:21 +0200 |
commit | 10d0786cd401a9c3ae06eaabcfb5f4d80ae12b41 (patch) | |
tree | 5258afb4250dd5e353304ba86df0b7ae8b3e4c4f /scripts/make_binary_distribution.sh | |
parent | ae47e257e318de90172a09c4a7ed5970ab3ed366 (diff) | |
parent | 609e65ba54505531f228983912155de10750a3da (diff) | |
download | mariadb-git-10d0786cd401a9c3ae06eaabcfb5f4d80ae12b41.tar.gz |
Bug#54590 "make_binary_distribution" fails because a command
line exceeds the limit
Upmerge the fix from 5.0 to 5.1
Diffstat (limited to 'scripts/make_binary_distribution.sh')
-rw-r--r-- | scripts/make_binary_distribution.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index bc54dc7062f..79ad585b7d5 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -476,9 +476,11 @@ $CP mysql-test/std_data/*.dat mysql-test/std_data/*.frm \ 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 +# Attention: when the wildcards expand to a line that is very long, +# it may exceed the command line length limit on some platform(s). Bug#54590 +$CP mysql-test/t/*.test mysql-test/t/*.imtest $BASE/mysql-test/t +$CP mysql-test/t/*.disabled mysql-test/t/*.opt $BASE/mysql-test/t +$CP 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 |