From 9af28870e10eacf603c966d01227d8bf58e1d36b Mon Sep 17 00:00:00 2001 From: Alexander Frick Date: Tue, 6 Aug 2024 14:28:40 -0500 Subject: [PATCH] fix thor_ wrapper --- setup.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.sh b/setup.sh index 4f7644fa..6efda0d9 100755 --- a/setup.sh +++ b/setup.sh @@ -173,7 +173,7 @@ copyAVX512 () { cp -r -v other/AVX512/build/config/* ${CR_SRC_DIR}/build/config/ && cp -r -v other/AVX512/third_party/* ${CR_SRC_DIR}/third_party/ && cp -v other/AVX512/thor_ver ${CR_SRC_DIR}/out/thorium/ && - cp -v infra/thor_ver_linux/wrapper-avx512 chrome/installer/linux/common/wrapper && + cp -v infra/thor_ver_linux/wrapper-avx512 ${CR_SRC_DIR}/chrome/installer/linux/common/wrapper && printf "\n" } case $1 in @@ -187,7 +187,7 @@ copyAVX2 () { cp -r -v other/AVX2/build/config/* ${CR_SRC_DIR}/build/config/ && cp -r -v other/AVX2/third_party/* ${CR_SRC_DIR}/third_party/ && cp -v other/AVX2/thor_ver ${CR_SRC_DIR}/out/thorium/ && - cp -v infra/thor_ver_linux/wrapper-avx2 chrome/installer/linux/common/wrapper && + cp -v infra/thor_ver_linux/wrapper-avx2 ${CR_SRC_DIR}/chrome/installer/linux/common/wrapper && printf "\n" } case $1 in @@ -200,7 +200,7 @@ copySSE4 () { printf "${YEL}Copying SSE4.1 build files...${c0}\n" && cp -r -v other/SSE4.1/build/config/* ${CR_SRC_DIR}/build/config/ && cp -v other/SSE4.1/thor_ver ${CR_SRC_DIR}/out/thorium/ && - cp -v infra/thor_ver_linux/wrapper-sse4 chrome/installer/linux/common/wrapper && + cp -v infra/thor_ver_linux/wrapper-sse4 ${CR_SRC_DIR}/chrome/installer/linux/common/wrapper && printf "\n" } case $1 in @@ -213,7 +213,7 @@ copySSE3 () { printf "${YEL}Copying SSE3 build files...${c0}\n" && cp -r -v other/SSE3/build/config/* ${CR_SRC_DIR}/build/config/ && cp -v other/SSE3/thor_ver ${CR_SRC_DIR}/out/thorium/ && - cp -v infra/thor_ver_linux/wrapper-sse3 chrome/installer/linux/common/wrapper && + cp -v infra/thor_ver_linux/wrapper-sse3 ${CR_SRC_DIR}/chrome/installer/linux/common/wrapper && printf "\n" } case $1 in @@ -226,7 +226,7 @@ copySSE2 () { printf "${YEL}Copying SSE2 (32-bit) build files...${c0}\n" && cp -r -v other/SSE2/build/config/* ${CR_SRC_DIR}/build/config/ && cp -v other/SSE2/thor_ver ${CR_SRC_DIR}/out/thorium/ && - cp -v infra/thor_ver_linux/wrapper-sse2 chrome/installer/linux/common/wrapper && + cp -v infra/thor_ver_linux/wrapper-sse2 ${CR_SRC_DIR}/chrome/installer/linux/common/wrapper && printf "\n" } case $1 in