From fa0e85e1f305c1a011ec6f086b66d79bb457290d Mon Sep 17 00:00:00 2001 From: Tong Zhigao Date: Thu, 24 Dec 2020 18:01:07 +0800 Subject: [PATCH] Fix release build target (#1313) Signed-off-by: Tong Zhigao --- release-centos7/build/build-tiflash-release.sh | 2 +- release-darwin/build/build-tiflash-release.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release-centos7/build/build-tiflash-release.sh b/release-centos7/build/build-tiflash-release.sh index 850550d164e..457226578be 100755 --- a/release-centos7/build/build-tiflash-release.sh +++ b/release-centos7/build/build-tiflash-release.sh @@ -52,7 +52,7 @@ cmake "$SRCPATH" ${DEFINE_CMAKE_PREFIX_PATH} \ -DENABLE_TESTS=OFF \ -Wno-dev -make -j $NPROC +make -j $NPROC tiflash cp -f "$build_dir/dbms/src/Server/tiflash" "$install_dir/tiflash" cp -f "${SRCPATH}/libs/libtiflash-proxy/libtiflash_proxy.so" "$install_dir/libtiflash_proxy.so" diff --git a/release-darwin/build/build-tiflash-release.sh b/release-darwin/build/build-tiflash-release.sh index 0d25cbf61cf..8942fa2b4c1 100755 --- a/release-darwin/build/build-tiflash-release.sh +++ b/release-darwin/build/build-tiflash-release.sh @@ -38,7 +38,7 @@ cmake "$SRCPATH" \ -DENABLE_MYSQL=OFF \ -Wno-dev -make -j $NPROC +make -j $NPROC tiflash cp -f "$build_dir/dbms/src/Server/tiflash" "$install_dir/tiflash" cp -f "${SRCPATH}/libs/libtiflash-proxy/libtiflash_proxy.dylib" "$install_dir/libtiflash_proxy.dylib"