aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/native
diff options
context:
space:
mode:
authorGravatar Alexander Chung <alexander.chung@uwaterloo.ca>2017-02-07 12:48:26 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2017-02-07 18:27:09 +0000
commitfc07142f08f9c32c1f3c757881078aba227de421 (patch)
tree70aba3849333ae98c2ce1a6824cb8b293fc60b5c /src/main/native
parenta2c0192e0ca7647178d798cd6ff79699424623ad (diff)
Add quotes to improve space support
These changes addresses issues where Windows users have a space in their username. Allows the default output_base path to be used. Closes #2491. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/2491 PiperOrigin-RevId: 146773331 MOS_MIGRATED_REVID=146773331
Diffstat (limited to 'src/main/native')
-rwxr-xr-xsrc/main/native/build_windows_jni.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/native/build_windows_jni.sh b/src/main/native/build_windows_jni.sh
index f997546f48..6716f89d7b 100755
--- a/src/main/native/build_windows_jni.sh
+++ b/src/main/native/build_windows_jni.sh
@@ -61,7 +61,7 @@ JAVAINCLUDES="C:/Program Files/java/$JAVA/include"
WINDOWS_SOURCES=()
for i in $*; do
if [[ "$i" =~ ^.*\.cc$ ]]; then
- WINDOWS_SOURCES+=("$(cygpath -a -w $i)")
+ WINDOWS_SOURCES+=("\"$(cygpath -a -w $i)\"")
fi
done