From 1d36a59974d4f91b09f228dd66882cfbd11088dd Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sun, 13 Feb 2022 20:37:28 +0100 Subject: [PATCH] gforth: fix hostbuilt tool path On repeated builds _PREFIX_FOR_BUILD is not set. %ci:no-build --- packages/gforth/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gforth/build.sh b/packages/gforth/build.sh index 20d5b7bc2..3f398ceee 100644 --- a/packages/gforth/build.sh +++ b/packages/gforth/build.sh @@ -33,7 +33,7 @@ termux_step_host_build() { } termux_step_pre_configure() { - PATH=$_PREFIX_FOR_BUILD/bin:$PATH + PATH=$TERMUX_PKG_HOSTBUILD_DIR/prefix/bin:$PATH } termux_step_post_configure() {