aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2016-03-22 14:36:02 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-03-23 12:18:18 +0000
commitdc0fbb42ab22ab8f3205b0884069e1ffe03677c9 (patch)
tree8a50b334948c61faf4aa2a254b1f3ca2a5135a4f /BUILD
parentebd386280db58e1f303cbd07533a03c30820da28 (diff)
Make specific options win over common ones
When specifying which command names to parse options for, given the command annotation, ensure that "common" comes first, so that it can be overridden by more specific options. -- Change-Id: I20cd90c098e993580c32297d1e36c8a6c939873a Reviewed-on: https://bazel-review.googlesource.com/#/c/3091 MOS_MIGRATED_REVID=117821257
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/BUILD b/BUILD
index 3852863b59..295515d1e6 100644
--- a/BUILD
+++ b/BUILD
@@ -22,9 +22,9 @@ filegroup(
["**"],
exclude = [
"bazel-*/**", # convenience symlinks
- "out/**" # IntelliJ with setup-intellij.sh
- "output/**", # output of compile.sh
- ".*/**", # mainly git
+ "out/**" + # IntelliJ with setup-intellij.sh
+ "output/**", # output of compile.sh
+ ".*/**", # mainly git
],
) + [
"//examples:srcs",