summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2017-07-13 20:37:03 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2017-07-18 17:48:17 +0000
commit8f77279c0ae9cea1f76524f932d38d63c518b482 (patch)
tree7057fedde5f4da07aabc53f49173d8121617be29 /Makefile.rules
parent77b0e4d34ddb8913c68c246d71a757c6c11028d9 (diff)
downloadchrome-ec-8f77279c0ae9cea1f76524f932d38d63c518b482.tar.gz
make: drop private- boards from consideration
We don't care about the private boards in the cr50 branch, let's not build them when invoking 'make buildall'. BRANCH=none BUG=none TEST='make buildall -j' still succeeds. Change-Id: I36196ac34251e14dcdd04692fa5abdfb62bb699c Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/571456 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 9d2c5bf494..1d27d3dc95 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -17,7 +17,7 @@ host-srcs := $(foreach u,$(host-util-bin),$(sort $($(u)-objs:%.o=util/%.c) util/
# Don't do a build test on the following boards:
skip_boards = OWNERS host it83xx_evb
-boards := $(filter-out $(skip_boards),$(notdir $(wildcard board/* private*/board/*)))
+boards := $(filter-out $(skip_boards),$(notdir $(wildcard board/*)))
# Create output directories if necessary
_common_dir_create := $(foreach d,$(common_dirs),$(shell [ -d $(out)/$(d) ] || \