tools: Use the correct architecture in make-package.sh
Some checks are pending
Build and test / build (push) Waiting to run

This commit is contained in:
apio 2024-04-10 21:53:20 +02:00
parent d8914b3efa
commit 6968961d5c
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -80,9 +80,9 @@ if [ -z ${skip_download_sources+x} ]; then
fi
if ! [ "$set_cc_variables" = "no" ]; then
export CC=x86_64-luna-gcc
export CXX=x86_64-luna-g++
export AR=x86_64-luna-ar
export CC=$LUNA_ARCH-luna-gcc
export CXX=$LUNA_ARCH-luna-g++
export AR=$LUNA_ARCH-luna-ar
export PKG_CONFIG=luna-pkg-config
export CC_FOR_BUILD=gcc
export CXX_FOR_BUILD=g++