aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
-rw-r--r--configure.py4
-rw-r--r--tensorflow/python/BUILD1
3 files changed, 5 insertions, 4 deletions
diff --git a/configure b/configure
index c6df6992d9..9c21d2b03a 100755
--- a/configure
+++ b/configure
@@ -8,7 +8,7 @@ if [ -z "$PYTHON_BIN_PATH" ]; then
fi
# Set all env variables
-$PYTHON_BIN_PATH configure.py
+"$PYTHON_BIN_PATH" configure.py
+echo "Configuration finished"
-echo "Configuration finished" \ No newline at end of file
diff --git a/configure.py b/configure.py
index e39bd53efb..edb0a47ee6 100644
--- a/configure.py
+++ b/configure.py
@@ -240,7 +240,7 @@ def run_gen_git_source(environ_cp):
Args:
environ_cp: copy of the os.environ.
"""
- cmd = '%s tensorflow/tools/git/gen_git_source.py --configure %s' % (
+ cmd = '"%s" tensorflow/tools/git/gen_git_source.py --configure %s' % (
environ_cp.get('PYTHON_BIN_PATH'), os.getcwd())
os.system(cmd)
@@ -379,7 +379,7 @@ def check_bazel_version(min_version):
min_version: string for minimum bazel version.
"""
try:
- curr_version = run_shell('bazel version')
+ curr_version = run_shell('bazel --batch version')
except subprocess.CalledProcessError:
print('Cannot find bazel. Please install bazel.')
sys.exit(0)
diff --git a/tensorflow/python/BUILD b/tensorflow/python/BUILD
index 2c216300d1..adbe53a3e3 100644
--- a/tensorflow/python/BUILD
+++ b/tensorflow/python/BUILD
@@ -2177,6 +2177,7 @@ cuda_py_test(
":dtypes",
":framework_test_lib",
],
+ tags = ["no_windows"],
)
cuda_py_test(