termux_step_handle_hostbuild: be more verbose when patching

This commit is contained in:
Henrik Grimler 2021-05-11 21:18:01 +02:00
parent 350b1b2567
commit a618264bb3
1 changed files with 1 additions and 0 deletions

View File

@ -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