Skip to content
Permalink
Browse files
MDEV-17088 - fix overlinking
mariadb-conv does not need to be linked with the client library
it does not talk to the server
  • Loading branch information
vaintroub committed Nov 28, 2019
1 parent 4ad083c commit bacdc4d
Showing 1 changed file with 1 addition and 1 deletion.
@@ -81,7 +81,7 @@ SET_SOURCE_FILES_PROPERTIES(mysqlslap.c PROPERTIES COMPILE_FLAGS "-DTHREADS")
TARGET_LINK_LIBRARIES(mysqlslap ${CLIENT_LIB})

MYSQL_ADD_EXECUTABLE(mariadb-conv mariadb-conv.cc)
TARGET_LINK_LIBRARIES(mariadb-conv ${CLIENT_LIB} strings)
TARGET_LINK_LIBRARIES(mariadb-conv mysys strings)

# "WIN32" also covers 64 bit. "echo" is used in some files below "mysql-test/".
IF(WIN32)

0 comments on commit bacdc4d

Please sign in to comment.