Fix list of paths to perform coding style check on
authorAntonio Nino Diaz <antonio.ninodiaz@arm.com>
Fri, 8 Apr 2016 10:49:10 +0000 (11:49 +0100)
committerAntonio Nino Diaz <antonio.ninodiaz@arm.com>
Fri, 8 Apr 2016 10:49:10 +0000 (11:49 +0100)
Removed an extra parentheses that produced an invalid list of files
and directories to check by checkpatch.pl.

Change-Id: Iefe2c1f8be6e7b7b58f6ffe3e16fe6336b9a8689

Makefile

index b2ca9168b030e4118be351b734b7f1c39f6a227b..3a13a79a6804ac641c3a4cbf1af272122190153a 100644 (file)
--- 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}