summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEtienne Carriere <etienne.carriere@linaro.org>2017-08-23 15:44:01 +0200
committerEtienne Carriere <etienne.carriere@linaro.org>2017-08-23 15:44:01 +0200
commit66079b04ec8b6ce9af4742ede977ba47ad7e11eb (patch)
tree3284e608fd04d0404a8d2ad6b7e419a42cfaf390 /Makefile
parentd591d7668e505ee5d89ce4f58f2df675c3be49d2 (diff)
Makefile: correct path for CHECKPATCH warnings
Change-Id: I08c9789d3fd2b034b08de663d151023ca005f77f Reported-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b57b2129..0a645146 100644
--- a/Makefile
+++ b/Makefile
@@ -571,10 +571,10 @@ endif
locate-checkpatch:
ifndef CHECKPATCH
- $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl")
+ $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
else
ifeq (,$(wildcard ${CHECKPATCH}))
- $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl")
+ $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
endif
endif