From 3523aedbdf6779ae58bf6e3717c419ba5921495a Mon Sep 17 00:00:00 2001 From: Bernard Spil Date: Sat, 27 Oct 2018 14:34:15 +0200 Subject: [PATCH] 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 --- extra/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/CMakeLists.txt b/extra/CMakeLists.txt index e0d3c36213a42..16de75f4e6af3 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)