From 34019de078baba901826e4f7e259bee2be7a63cc Mon Sep 17 00:00:00 2001 From: osak buildhauer user <buildhauer@fsmpi.rwth-aachen.de> Date: Mon, 19 Oct 2015 16:35:04 +0200 Subject: [PATCH] patch_all: fix echo call --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5abd108..f522d54 100644 --- a/Makefile +++ b/Makefile @@ -139,7 +139,7 @@ GPARTED_BASE_URL=http://sourceforge.net/projects/gparted/files/gparted-live-stab #applies all patches in $1 to target directory $2 define patch_all = -$(foreach p,$(wildcard $1/*),@echo "Applying \"$1\" to \"$2\":" && \ +$(foreach p,$(wildcard $1/*),echo "Applying \"$1\" to \"$2\":" && \ cat "$p" | patch -d"$2" -p1 && echo "done." && ) true endef -- GitLab