diff options
-rw-r--r-- | debian/mariadb-client-5.5.files | 1 | ||||
-rw-r--r-- | man/CMakeLists.txt | 2 | ||||
-rw-r--r-- | scripts/CMakeLists.txt | 3 |
3 files changed, 4 insertions, 2 deletions
diff --git a/debian/mariadb-client-5.5.files b/debian/mariadb-client-5.5.files index 9cb949ea53e..335f736d680 100644 --- a/debian/mariadb-client-5.5.files +++ b/debian/mariadb-client-5.5.files @@ -11,6 +11,7 @@ usr/bin/mysqlimport usr/bin/mysqlreport usr/bin/mysqlshow usr/bin/mysqlslap +usr/bin/mytop usr/bin/mysql_waitpid usr/share/lintian/overrides/mariadb-client-5.5 usr/share/man/man1/innotop.1 diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt index d7ef1fae0bf..37f454c6d34 100644 --- a/man/CMakeLists.txt +++ b/man/CMakeLists.txt @@ -21,7 +21,7 @@ SET(MAN1_SERVER innochecksum.1 my_print_defaults.1 myisam_ftdump.1 myisamchk.1 mysql_tzinfo_to_sql.1 mysql_upgrade.1 mysql_zap.1 mysqld_multi.1 mysqld_safe.1 mysqldumpslow.1 mysqlhotcopy.1 mysqlman.1 mysqltest.1 perror.1 replace.1 resolve_stack_dump.1 - resolveip.1) + resolveip.1 mysqlbug.1) SET(MAN8_SERVER mysqld.8 mysqlmanager.8) SET(MAN1_CLIENT msql2mysql.1 mysql.1 mysql_find_rows.1 mysql_waitpid.1 mysqlaccess.1 mysqladmin.1 mysqlbinlog.1 mysqlcheck.1 diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index a0a2e446609..91a47bf3d48 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -283,6 +283,7 @@ SET(mysql_config_COMPONENT COMPONENT Development) SET(msql2mysql_COMPONENT COMPONENT Client) SET(mysqlaccess_COMPONENT COMPONENT Client) SET(mysql_find_rows_COMPONENT COMPONENT Client) +SET(mytop_COMPONENT Client) IF(WIN32) # On Windows, some .sh and some .pl.in files are configured @@ -311,7 +312,6 @@ IF(WIN32) ENDFOREACH() ELSE() # On Unix, most of the files end up in the bin directory - SET(mysql_config_COMPONENT COMPONENT Development) SET(BIN_SCRIPTS msql2mysql mysql_config @@ -322,6 +322,7 @@ ELSE() mysqlaccess mysql_convert_table_format mysql_find_rows + mytop mysqlhotcopy mysqldumpslow mysqld_multi |