From dfec3c8552b67b31e413bd45298c0897661db8b3 Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Tue, 20 Sep 2016 13:58:30 +0300 Subject: [PATCH] Install maxbinlogcheck in the right place Maxbinlogcheck was installed in the wrong place. --- server/modules/routing/binlog/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/binlog/CMakeLists.txt b/server/modules/routing/binlog/CMakeLists.txt index 8b9298b22..780a7a564 100644 --- a/server/modules/routing/binlog/CMakeLists.txt +++ b/server/modules/routing/binlog/CMakeLists.txt @@ -7,7 +7,7 @@ install(TARGETS binlogrouter DESTINATION ${MAXSCALE_LIBDIR}) add_executable(maxbinlogcheck maxbinlogcheck.c blr_file.c blr_cache.c blr_master.c blr_slave.c blr.c) target_link_libraries(maxbinlogcheck maxscale-common ${PCRE_LINK_FLAGS} uuid) -install(TARGETS maxbinlogcheck DESTINATION bin) +install(TARGETS maxbinlogcheck DESTINATION ${MAXSCALE_BINDIR}) if(BUILD_TESTS) add_subdirectory(test)