From 66079b04ec8b6ce9af4742ede977ba47ad7e11eb Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 23 Aug 2017 15:44:01 +0200 Subject: [PATCH] Makefile: correct path for CHECKPATCH warnings Change-Id: I08c9789d3fd2b034b08de663d151023ca005f77f Reported-by: Yann Gautier Signed-off-by: Etienne Carriere --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b57b21291..0a6451460 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