From a618264bb3a18c7c21c9bd4c732314f2c097942c Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Tue, 11 May 2021 21:18:01 +0200 Subject: [PATCH] termux_step_handle_hostbuild: be more verbose when patching --- scripts/build/termux_step_handle_hostbuild.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build/termux_step_handle_hostbuild.sh b/scripts/build/termux_step_handle_hostbuild.sh index ec21015263..cc5bebc32c 100644 --- a/scripts/build/termux_step_handle_hostbuild.sh +++ b/scripts/build/termux_step_handle_hostbuild.sh @@ -5,6 +5,7 @@ termux_step_handle_hostbuild() { cd "$TERMUX_PKG_SRCDIR" if [ "$TERMUX_PKG_QUICK_REBUILD" = "false" ]; then for patch in $TERMUX_PKG_BUILDER_DIR/*.patch.beforehostbuild; do + echo "Applying patch: $(basename $patch)" test -f "$patch" && sed "s%\@TERMUX_PREFIX\@%${TERMUX_PREFIX}%g" "$patch" | patch --silent -p1 done fi