aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2015-09-02 14:09:01 +0000
committerGravatar Florian Weikert <fwe@google.com>2015-09-02 14:33:26 +0000
commit8a61174af91802262b682e51eae10dabf2fe491f (patch)
tree904eeac338ad3fdee83d2570e778805dd9163556 /src
parent6a663390e5247c8619991ca763a9496839d61f8b (diff)
Fix includes documentation
As pointed out on bazel-discuss, includes actually prepends -iquote, not -I, to the includes. -- MOS_MIGRATED_REVID=102139493
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
index 08250ed45f..c4c8348b56 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
@@ -363,7 +363,7 @@ public class BazelCppRuleClasses {
List of include dirs to be added to the compile line.
${SYNOPSIS}
Subject to <a href="#make_variables">"Make variable"</a> substitution.
- Each string is prepended with <code>-I</code> and added to <code>COPTS</code>. Unlike
+ Each string is prepended with <code>-iquote</code> and added to <code>COPTS</code>. Unlike
<a href="#cc_binary.copts">COPTS</a>, these flags are added for this rule
and every rule that depends on it. (Note: not the rules it depends upon!) Be
very careful, since this may have far-reaching effects. When in doubt, add