From a6ba0d85eef0ea81c61f24ae0c8ad19e9dd25eef Mon Sep 17 00:00:00 2001
From: kenrabold <kenrabold@hotmail.com>
Date: Mon, 16 Apr 2018 09:58:23 -0700
Subject: [PATCH] make: Ignore checking all vendor files

Ignore all files in any vendor directory, not just /include/vendor
---
 dist/tools/ci/changed_files.sh      | 2 +-
 dist/tools/whitespacecheck/check.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/tools/ci/changed_files.sh b/dist/tools/ci/changed_files.sh
index 0ee5605e64..02f8ba31a3 100644
--- a/dist/tools/ci/changed_files.sh
+++ b/dist/tools/ci/changed_files.sh
@@ -8,7 +8,7 @@
 
 changed_files() {
     : ${FILEREGEX:='\.([CcHh]|[ch]pp)$'}
-    : ${EXCLUDE:='^(.+/include/vendor/|dist/tools/coccinelle/include|boards/common/msba2/tools/src)'}
+    : ${EXCLUDE:='^(.+/vendor/|dist/tools/coccinelle/include|boards/common/msba2/tools/src)'}
     : ${DIFFFILTER:='ACMR'}
 
     DIFFFILTER="--diff-filter=${DIFFFILTER}"
diff --git a/dist/tools/whitespacecheck/check.sh b/dist/tools/whitespacecheck/check.sh
index ed803e0e14..097330ed27 100755
--- a/dist/tools/whitespacecheck/check.sh
+++ b/dist/tools/whitespacecheck/check.sh
@@ -6,7 +6,7 @@
 # General Public License v2.1. See the file LICENSE in the top level
 # directory for more details.
 
-NOVENDOR=":!*/include/vendor/*"
+NOVENDOR=":!*/vendor/*"
 
 # If no branch but an option is given, unset BRANCH.
 # Otherwise, consume this parameter.
-- 
GitLab