summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <kent@mysql.com/c-794072d5.010-2112-6f72651.cust.bredbandsbolaget.se>2006-10-16 02:07:50 +0200
committerunknown <kent@mysql.com/c-794072d5.010-2112-6f72651.cust.bredbandsbolaget.se>2006-10-16 02:07:50 +0200
commit7ef680fe8060c72e14277a9faf460a55edb0da88 (patch)
tree155acb67926b2b5736cb24e5364fbae7fd3149d3 /scripts
parentcc826bffe2d85ee769cc65f0f4f22ff38237eb63 (diff)
downloadmariadb-git-7ef680fe8060c72e14277a9faf460a55edb0da88.tar.gz
make_binary_distribution.sh:
Split copy of result files to avoid shell limit. Added copy of mysql-test/std_data/ndb_backup5{0,1}. configure.in: Look for dlopen() even if --with-mysqld-ldflags constains "-static", as this is not the same as the flag to "ld", it just informs "libtool" to link static with libraries created part of the build, even if there exists shared versions. configure.in: Look for dlopen() even if --with-mysqld-ldflags constains "-static", as this is not the same as the flag to "ld", it just informs "libtool" to link static with libraries created part of the build, even if there exists shared versions. scripts/make_binary_distribution.sh: Split copy of result files to avoid shell limit. Added copy of mysql-test/std_data/ndb_backup5{0,1}.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/make_binary_distribution.sh13
1 files changed, 11 insertions, 2 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh
index c254a77e805..81e7f22c1b8 100644
--- a/scripts/make_binary_distribution.sh
+++ b/scripts/make_binary_distribution.sh
@@ -93,6 +93,7 @@ mkdir $BASE $BASE/bin $BASE/docs \
$BASE/include $BASE/lib $BASE/support-files $BASE/share $BASE/scripts \
$BASE/mysql-test $BASE/mysql-test/t $BASE/mysql-test/r \
$BASE/mysql-test/include $BASE/mysql-test/std_data $BASE/mysql-test/lib \
+ $BASE/mysql-test/std_data/ndb_backup50 $BASE/mysql-test/std_data/ndb_backup51 \
$BASE/mysql-test/extra \
$BASE/mysql-test/extra/binlog_tests $BASE/mysql-test/extra/rpl_tests
@@ -249,12 +250,20 @@ $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 \
$BASE/mysql-test/std_data
+$CP mysql-test/std_data/ndb_backup50/*.Data \
+ mysql-test/std_data/ndb_backup50/*.ctl \
+ mysql-test/std_data/ndb_backup50/*.log \
+ $BASE/mysql-test/std_data/ndb_backup50
+$CP mysql-test/std_data/ndb_backup51/*.Data \
+ mysql-test/std_data/ndb_backup51/*.ctl \
+ mysql-test/std_data/ndb_backup51/*.log \
+ $BASE/mysql-test/std_data/ndb_backup51
$CP mysql-test/t/*.test $BASE/mysql-test/t
$CP mysql-test/t/*.imtest mysql-test/t/*.disabled $BASE/mysql-test/t
$CP mysql-test/t/*.opt mysql-test/t/*.slave-mi $BASE/mysql-test/t
$CP 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
+$CP mysql-test/r/*.result $BASE/mysql-test/r
+$CP mysql-test/r/*.require $BASE/mysql-test/r
$CP mysql-test/extra/binlog_tests/*.test $BASE/mysql-test/extra/binlog_tests
$CP mysql-test/extra/rpl_tests/*.test $BASE/mysql-test/extra/rpl_tests