diff options
author | jimw@mysql.com <> | 2005-02-01 11:59:44 -0800 |
---|---|---|
committer | jimw@mysql.com <> | 2005-02-01 11:59:44 -0800 |
commit | a8039e1ac8904b98337d4978d48e830e63cf3a9e (patch) | |
tree | 6cddbfdef7b5dfba1c1b83c9ee7d94cf2b768352 /scripts/make_binary_distribution.sh | |
parent | b018755ea6099c0481707136b999d775727991e0 (diff) | |
download | mariadb-git-a8039e1ac8904b98337d4978d48e830e63cf3a9e.tar.gz |
Make sure mysql_client_test and embedded test clients get added to
binary distribution on all platforms.
Diffstat (limited to 'scripts/make_binary_distribution.sh')
-rw-r--r-- | scripts/make_binary_distribution.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index 22b51168c23..33d4794e4f7 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -107,8 +107,11 @@ BIN_FILES="extra/comp_err$BS extra/replace$BS extra/perror$BS \ client/mysql$BS client/mysqlshow$BS client/mysqladmin$BS \ client/mysqldump$BS client/mysqlimport$BS \ client/mysqltest$BS client/mysqlcheck$BS \ - client/mysqlbinlog$BS -"; + client/mysqlbinlog$BS \ + tests/mysql_client_test$BS \ + libmysqld/examples/mysql_client_test_embedded$BS \ + libmysqld/examples/mysqltest_embedded$BS \ + "; # Platform-specific bin dir files: if [ $BASE_SYSTEM = "netware" ] ; then @@ -127,8 +130,9 @@ else client/.libs/mysqltest client/.libs/mysqlcheck \ client/.libs/mysqlbinlog client/.libs/mysqlmanagerc \ client/.libs/mysqlmanager-pwgen tools/.libs/mysqlmanager \ - tests/.libs/mysql_client_test libmysqld/examples/mysql_client_test_embedded \ - libmysqld/examples/mysqltest_embedded \ + tests/.libs/mysql_client_test \ + libmysqld/examples/.libs/mysql_client_test_embedded \ + libmysqld/examples/.libs/mysqltest_embedded \ "; fi |