From 429d14d435259899ff0436014187fe35c6cdd1d7 Mon Sep 17 00:00:00 2001 From: Asim Shankar Date: Mon, 13 Mar 2017 13:27:31 -0800 Subject: configure: Add option to restrict bazel targets fetched. Use that option to restrict the Windows C and Java library release builds to the 4 targets that are actually built. Change: 149990258 --- configure | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 0064d5574a..05daa23d70 100755 --- a/configure +++ b/configure @@ -41,8 +41,10 @@ function bazel_clean_and_fetch() { if ! is_windows; then bazel clean --expunge fi - bazel fetch "//tensorflow/... -//tensorflow/contrib/nccl/... \ - -//tensorflow/examples/android/..." + if [ -z "$TF_BAZEL_TARGETS" ]; then + TF_BAZEL_TARGETS="//tensorflow/... -//tensorflow/contrib/nccl/... -//tensorflow/examples/android/..." + fi + bazel fetch "$TF_BAZEL_TARGETS" } function sed_hyphen_i() { -- cgit v1.2.3