aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/test
diff options
context:
space:
mode:
authorGravatar Liam Miller-Cushon <cushon@google.com>2016-01-29 20:14:48 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-01 09:45:50 +0000
commit191646d44dc8cf51391f5061fbf08a58e7706a03 (patch)
treee09c0d51eb527e6b743db2fd069aa2c660622a79 /third_party/ijar/test
parentf1121951d4e9a77291956f58be1c32a1f444d2d9 (diff)
RELNOTES[INC]: Remove JAVAC "Make" variable
The JAVAC "Make" variable is the javac packaged with the host JDK, which is not necessarily the same version used to compile java_library rules. Users should typically use java_library directly. If a manual javac invocation is required, BazelJavac uses the same javac version and flags as java_library. In the rare cases where the host JDK's compiler is actually desired, prefer `$(JAVABASE)/bin/javac` to `$(JAVAC)` for clarity. -- MOS_MIGRATED_REVID=113386241
Diffstat (limited to 'third_party/ijar/test')
-rw-r--r--third_party/ijar/test/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/ijar/test/BUILD b/third_party/ijar/test/BUILD
index a096417a2f..9137bf18ba 100644
--- a/third_party/ijar/test/BUILD
+++ b/third_party/ijar/test/BUILD
@@ -9,7 +9,7 @@ sh_test(
size = "enormous",
srcs = ["ijar_test.sh"],
args = [
- "$(JAVAC)",
+ "$(JAVABASE)/bin/javac",
"$(JAVA)",
"$(JAVABASE)/bin/jar",
"$(JAVABASE)/bin/javap",