From 8d89ba39d450bc5bbce15da209039093865abc41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ni=C3=B1o=20D=C3=ADaz?= Date: Thu, 4 Jan 2018 21:54:10 +0000 Subject: [PATCH] Decouple commands in checkpatch Makefile target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Antonio Niño Díaz --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 66e1b0a5..d2126cb7 100644 --- a/Makefile +++ b/Makefile @@ -158,9 +158,9 @@ checkcodebase: checkpatch: $Qeval COMMON_COMMIT=$$(git merge-base HEAD origin/develop); \ for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \ - echo "[*] Analyzing commit '$$commit'" && \ + echo "[*] Analyzing commit '$$commit'"; \ git format-patch --stdout "$$commit~..$$commit" \ - | ${CHECKPATCH} - || true;\ + | ${CHECKPATCH} - || true; \ done # Target for the project maintainer to easily create web manuals.