ref: 8d89ba39d450bc5bbce15da209039093865abc41
parent: b04596a32bc6b318322064da475ea8138a79f810
author: Antonio Niño Díaz <[email protected]>
date: Thu Jan 4 16:54:10 EST 2018
Decouple commands in checkpatch Makefile target Signed-off-by: Antonio Niño Díaz <[email protected]>
--- a/Makefile
+++ b/Makefile
@@ -158,9 +158,9 @@
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.