diff options
author | Rasmus Johansson <razze@iki.fi> | 2020-03-20 11:39:13 +0000 |
---|---|---|
committer | Rasmus Johansson <razze@iki.fi> | 2020-03-20 16:32:11 +0200 |
commit | e239365458dd704ff4c3a5216e4e2ed7d91767ff (patch) | |
tree | 9a70254cd5510c756c25f0fcb536f9a6f16ea25a /debian/mariadb-test.install | |
parent | fcc0b89d521a6aa7c11d1762e64ecd79fe2b2aa9 (diff) | |
download | mariadb-git-10.5-MDEV-21303.tar.gz |
MDEV-21303 Make executables MariaDB named10.5-MDEV-21303
To change all executables to have a mariadb name I had to:
- Do name changes in every CMakeLists.txt that produces executables
- CREATE_MARIADB_SYMLINK was removed and GET_SYMLINK added by Wlad to reuse the function in other places also
- The scripts/CMakeLists.txt could make use of GET_SYMLINK instead of introducing redundant code, but I thought I'll leave that for next release
- A lot of changes to debian/.install and debian/.links files due to swapping of real executable and symlink. I did not however change the name of the manpages, so the real name is still mysql there and mariadb are symlinks.
- The Windows part needed a change now when we made the executables mariadb -named. MSI (and ZIP) do not support symlinks and to not break backward compatibility we had to include mysql named binaries also. Done by Wlad
Diffstat (limited to 'debian/mariadb-test.install')
-rw-r--r-- | debian/mariadb-test.install | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debian/mariadb-test.install b/debian/mariadb-test.install index fc7a707c007..7a0ed767bad 100644 --- a/debian/mariadb-test.install +++ b/debian/mariadb-test.install @@ -1,7 +1,7 @@ -usr/bin/mysql_client_test -usr/bin/mysql_client_test_embedded -usr/bin/mysqltest -usr/bin/mysqltest_embedded +usr/bin/mariadb-client-test +usr/bin/mariadb-client-test-embedded +usr/bin/mariadb-test +usr/bin/mariadb-test-embedded usr/lib/mysql/plugin/adt_null.so usr/lib/mysql/plugin/auth_0x0100.so usr/lib/mysql/plugin/auth_test_plugin.so @@ -17,10 +17,10 @@ usr/lib/mysql/plugin/qa_auth_client.so usr/lib/mysql/plugin/qa_auth_interface.so usr/lib/mysql/plugin/qa_auth_server.so usr/lib/mysql/plugin/test_versioning.so -usr/share/man/man1/mariadb-client-test-embedded.1 usr/share/man/man1/mariadb-client-test.1 -usr/share/man/man1/mariadb-test-embedded.1 +usr/share/man/man1/mariadb-client-test-embedded.1 usr/share/man/man1/mariadb-test.1 +usr/share/man/man1/mariadb-test-embedded.1 usr/share/man/man1/mysql-stress-test.pl.1 usr/share/man/man1/mysql-test-run.pl.1 usr/share/man/man1/mysql_client_test.1 |