summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAntonio Nino Diaz <antonio.ninodiaz@arm.com>2016-04-08 11:49:10 +0100
committerAntonio Nino Diaz <antonio.ninodiaz@arm.com>2016-04-08 11:49:10 +0100
commit3323fe1d76a6f7a40b8056e098e4b481afb047a1 (patch)
tree1db9bcf8b71b59b7d54a720d581438f70e1432c8 /Makefile
parent7a0ae2f457d4d80daa94c357254fee757337ff28 (diff)
Fix list of paths to perform coding style check on
Removed an extra parentheses that produced an invalid list of files and directories to check by checkpatch.pl. Change-Id: Iefe2c1f8be6e7b7b58f6ffe3e16fe6336b9a8689
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b2ca9168..3a13a79a 100644
--- a/Makefile
+++ b/Makefile
@@ -115,7 +115,7 @@ CHECKCODE_ARGS := --no-patch --no-tree --no-signoff ${CHECK_IGNORE}
# Do not check the coding style on C library files
INCLUDE_DIRS_TO_CHECK := $(sort $(filter-out include/stdlib, $(wildcard include/*)))
LIB_DIRS_TO_CHECK := $(sort $(filter-out lib/stdlib, $(wildcard lib/*)))
-ROOT_DIRS_TO_CHECK := $(sort $(filter-out lib include, $(wildcard *))))
+ROOT_DIRS_TO_CHECK := $(sort $(filter-out lib include, $(wildcard *)))
CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} ${INCLUDE_DIRS_TO_CHECK} ${LIB_DIRS_TO_CHECK}