From 3e0719398a3ad0368c90dc32060afa10c8e29d02 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 8 Aug 2024 18:30:15 +0000 Subject: [PATCH] make.sh: Fix passing the build directory find-dependencies Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 922fc4b4c..21b7faf01 100755 --- a/make.sh +++ b/make.sh @@ -2463,7 +2463,7 @@ update-contributors) ;; find-dependencies) shift - exec "${BASEDIR}/tools/find-dependencies" "${BASEDIR}/build" "$@" + exec "${BASEDIR}/tools/find-dependencies" "${BUILD_DIR}" "$@" ;; check-manualpages) echo "Checking the manual pages for broken links..." -- 2.39.5