From 803126e1de57a80a23fa5841905a855f1f6b002a Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Tue, 5 Feb 2019 14:49:52 +0100 Subject: [PATCH] buildscript: Indicate current patch being applied So far, we only saw the files affected, but not the patch used. Signed-off-by: Adrian Schmutzler Reviewed-by: Christian Dresel --- buildscript | 1 + 1 file changed, 1 insertion(+) diff --git a/buildscript b/buildscript index 3ba36a6..1d527c6 100755 --- a/buildscript +++ b/buildscript @@ -125,6 +125,7 @@ get_source() { patch_target() { if [ "$(find "$PWD"/build_patches/openwrt/*.patch 2> /dev/null | wc -l)" -ge 1 ]; then for patch in "$PWD"/build_patches/openwrt/*.patch; do + echo "Applying $patch:" patch --no-backup-if-mismatch -p1 -d "$target" -i "$patch" done fi