This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
commit 9ba074a597fe6b1490be126089a0d548c5bad69b Author: Kang <[email protected]> AuthorDate: Fri Jun 30 09:03:05 2023 +0800 [bugfix](build script) fix noavx2 package name branch condition #21356 ARCH changed from x86_64 to x64, but the check condition for noavx2 remains x86_64. Just remove check for ARCH. --- build-for-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-for-release.sh b/build-for-release.sh index 976d8217c1..4b48e5f810 100755 --- a/build-for-release.sh +++ b/build-for-release.sh @@ -118,7 +118,7 @@ BE="be" EXT="extensions" PACKAGE="apache-doris-${VERSION}-bin-${ARCH}" -if [[ "${_USE_AVX2}" == "0" && "${ARCH}" == "x86_64" ]]; then +if [[ "${_USE_AVX2}" == "0" ]]; then PACKAGE="${PACKAGE}-noavx2" fi --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
