From: Michael Tremer Date: Fri, 5 Jul 2024 09:52:24 +0000 (+0000) Subject: make.sh: Fix checking if we have a fake environment X-Git-Tag: v2.29-core188~10^2~342 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f43f28738a8e5f3e034151f4eb57a2df7fcfde02;p=ipfire-2.x.git make.sh: Fix checking if we have a fake environment Signed-off-by: Michael Tremer --- diff --git a/make.sh b/make.sh index ca7433f480..4a55868b25 100755 --- a/make.sh +++ b/make.sh @@ -814,7 +814,7 @@ wait_until_finished() { } fake_environ() { - [ -e "${BASEDIR}/build${TOOLS_DIR}/lib/libpakfire_preload.so" ] || return + [ -e "${BUILD_DIR}${TOOLS_DIR}/lib/libpakfire_preload.so" ] || return local env="LD_PRELOAD=${TOOLS_DIR}/lib/libpakfire_preload.so"