From ce91f76e659cee6940d0f5e10c2bbd7e43be76d4 Mon Sep 17 00:00:00 2001 From: Tobias Werth Date: Fri, 18 Jan 2019 01:24:02 -0800 Subject: [PATCH] Use bazel without JDK in //scripts/packages:without-jdk/bazel. Fixes #7167. RELNOTES: None Closes #7172. PiperOrigin-RevId: 229890772 --- scripts/packages/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD index 5a66400d1f440c..7e9ec210b2578e 100644 --- a/scripts/packages/BUILD +++ b/scripts/packages/BUILD @@ -93,7 +93,7 @@ genrule( genrule( name = "rename-bazel-bin-without-jdk", - srcs = ["//src:bazel"], + srcs = ["//src:bazel_nojdk"], outs = ["without-jdk/bazel-real"], cmd = "mkdir -p $$(dirname $@); cp $< $@", )