make/autoconf/toolchain_windows.m4
branchJDK-8215445-branch
changeset 57082 dc3a6c647672
parent 57081 a55844323727
--- a/make/autoconf/toolchain_windows.m4	Wed Dec 19 00:50:05 2018 -0800
+++ b/make/autoconf/toolchain_windows.m4	Wed Dec 19 03:35:40 2018 -0800
@@ -483,26 +483,28 @@
       AC_SUBST(VS_INCLUDE)
       AC_SUBST(VS_LIB)
 
-      # Convert VS_PATH to unix style
       OLDIFS="$IFS"
       IFS=";"
-      VS_PATH_WINDOWS="$VS_PATH"
-      VS_PATH=""
-      for i in $VS_PATH_WINDOWS; do
-        path=$i
-        # Only process non-empty elements
-        if test "x$path" != x; then
-          IFS="$OLDIFS"
-          # Check that directory exists before calling fixup_path
-          testpath=$path
-          BASIC_WINDOWS_REWRITE_AS_UNIX_PATH([testpath])
-          if test -d "$testpath"; then
-            BASIC_FIXUP_PATH([path])
-            BASIC_APPEND_TO_PATH(VS_PATH, $path)
+      if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.wsl"; then
+        # Convert VS_PATH to unix style
+        VS_PATH_WINDOWS="$VS_PATH"
+        VS_PATH=""
+        for i in $VS_PATH_WINDOWS; do
+          path=$i
+          # Only process non-empty elements
+          if test "x$path" != x; then
+            IFS="$OLDIFS"
+            # Check that directory exists before calling fixup_path
+            testpath=$path
+            BASIC_WINDOWS_REWRITE_AS_UNIX_PATH([testpath])
+            if test -d "$testpath"; then
+              BASIC_FIXUP_PATH([path])
+              BASIC_APPEND_TO_PATH(VS_PATH, $path)
+            fi
+            IFS=";"
           fi
-          IFS=";"
-        fi
-      done
+        done
+      fi
       # Convert VS_INCLUDE into SYSROOT_CFLAGS
       for i in $VS_INCLUDE; do
         ipath=$i