diff options
author | Bernard Spil <Sp1l@users.noreply.github.com> | 2018-10-27 14:34:15 +0200 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2021-03-28 12:51:48 +1100 |
commit | 3523aedbdf6779ae58bf6e3717c419ba5921495a (patch) | |
tree | e87d2e17884e157dc17aafab204857f48274d5c7 | |
parent | 27decbbfe6bfc9df726af0f484e4b547e7c869f6 (diff) | |
download | mariadb-git-3523aedbdf6779ae58bf6e3717c419ba5921495a.tar.gz |
Make `replace` utility a Client component
based on the man-page
```
The replace program is used by msql2mysql. See msql2mysql(1).
```
msql2mysql is labeled as Client component, so should the dependency
Closes PR #900
-rw-r--r-- | extra/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/CMakeLists.txt b/extra/CMakeLists.txt index e0d3c36213a..16de75f4e6a 100644 --- a/extra/CMakeLists.txt +++ b/extra/CMakeLists.txt @@ -87,7 +87,7 @@ IF(WITH_INNOBASE_STORAGE_ENGINE) ADD_DEPENDENCIES(innochecksum GenError) ENDIF() -MYSQL_ADD_EXECUTABLE(replace replace.c COMPONENT Server) +MYSQL_ADD_EXECUTABLE(replace replace.c COMPONENT Client) TARGET_LINK_LIBRARIES(replace mysys) IF(UNIX) |