From 386587264caaaa01a068299a6b0f3198a2206c4f Mon Sep 17 00:00:00 2001 From: telans Date: Sun, 2 Feb 2020 12:45:45 +1300 Subject: [PATCH] actually fix building this time --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 8918dbcd..142bdfb9 100755 --- a/build.sh +++ b/build.sh @@ -70,10 +70,10 @@ configure() { if [[ ! -d build/meson64 ]]; then meson build/meson64 --libdir lib64 --prefix $PWD/build/release/usr - CC="gcc -m32" \ - CXX="g++ -m32" \ - PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig:${PKG_CONFIG_PATH_32}" \ - LLVM_CONFIG="/usr/bin/llvm-config32" \ + export CC="gcc -m32" + export CXX="g++ -m32" + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig:${PKG_CONFIG_PATH_32}" + export LLVM_CONFIG="/usr/bin/llvm-config32" meson build/meson32 --libdir lib32 --prefix $PWD/build/release/usr fi }