Fix echo command in checkpatch target in Makefile

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2018-01-03 19:46:48 +01:00
parent 3c15b141e0
commit 3c14f9760f

View File

@@ -159,7 +159,7 @@ checkcodebase:
checkpatch: checkpatch:
$Qeval COMMON_COMMIT=$$(git merge-base HEAD origin/develop); \ $Qeval COMMON_COMMIT=$$(git merge-base HEAD origin/develop); \
for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \ for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \
echo "[*] Analyzing commit "$$commit"" && \ echo "[*] Analyzing commit '$$commit'" && \
git format-patch --stdout "$$commit~..$$commit" \ git format-patch --stdout "$$commit~..$$commit" \
| ${CHECKPATCH} - || true;\ | ${CHECKPATCH} - || true;\
done done