From 1d592520d6eba56d1095fd13776b9ea82241872e Mon Sep 17 00:00:00 2001 From: Akira KAWAGUCHI Date: Sun, 1 Oct 2023 20:38:39 +0900 Subject: [PATCH] Modify to install third party to use own repository's that --- dist/install/install-server.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/install/install-server.sh b/dist/install/install-server.sh index 9117736..c504f71 100755 --- a/dist/install/install-server.sh +++ b/dist/install/install-server.sh @@ -31,7 +31,7 @@ cmake -G Ninja -DCMAKE_BUILD_TYPE=${TG_CMAKE_BUILD_TYPE} -DCMAKE_CXX_FLAGS_RELWI cmake --build . --target install --parallel ${TG_CMAKE_BUILD_PARALLEL} -- ${TG_COMMON_BUILD_TOOL_OPTIONS} echo -e "\n[Install hopscotch-map]" -cd "${TG_YUGAWARA_DIR}/third_party/hopscotch-map" +cd "${TG_INSTALL_BASE_DIR}/third_party/hopscotch-map" if [ "clean" = "${TG_CLEAN_BUILD}" ]; then rm -fr ../../build-hopscotch-map fi @@ -111,7 +111,7 @@ cmake -G Ninja -DCMAKE_BUILD_TYPE=${TG_CMAKE_BUILD_TYPE} -DCMAKE_CXX_FLAGS_RELWI cmake --build . --target install --parallel ${TG_CMAKE_BUILD_PARALLEL} -- ${TG_COMMON_BUILD_TOOL_OPTIONS} echo -e "\n[Install moodycamel::ConcurrentQueue]" -cd "${TG_TATEYAMA_DIR}/third_party/concurrentqueue" +cd "${TG_INSTALL_BASE_DIR}/third_party/concurrentqueue" if [ "clean" = "${TG_CLEAN_BUILD}" ]; then rm -fr ../../build-concurrentqueue fi