From patchwork Tue Feb 5 13:49:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: buildscript: Indicate current patch being applied From: Adrian Schmutzler X-Patchwork-Id: 1022 Message-Id: <20190205134952.1891-1-freifunk@adrianschmutzler.de> To: franken-dev@freifunk.net Date: Tue, 5 Feb 2019 14:49:52 +0100 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 3ba36a6a..1d527c6e 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