From 403b4b19f5f0bcbf308db8aa4acaffbaff18bae2 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Mon, 6 Oct 2025 20:55:40 +0300 Subject: [PATCH] Fix source.sh script --- source.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source.sh b/source.sh index d10cbe0..f7f3f61 100644 --- a/source.sh +++ b/source.sh @@ -6,8 +6,8 @@ # This function is used to compile the source code build() { # Build only minimal debug info to reduce size - export CFLAGS+="${CFLAGS} -g1" - export CXXFLAGS"${CXXFLAGS} -g1" + export CFLAGS="${CFLAGS} -g1" CXXFLAGS="${CXXFLAGS} -g1" + exit 1 meson setup --prefix=/usr \ --libdir=/usr/lib \