summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam B. Goode <adam.mckee84@gmail.com>2021-03-17 14:11:57 -0500
committerJerome Jiang <jianj@google.com>2021-03-18 12:59:46 -0700
commitb41ffb53f1000ab2227c1736d8c1355aa5081c40 (patch)
tree3191057dfd4fa79bf6130565380d109e3a5c30bc
parent24b43c4ea5c2b54e32b107921cb06e89a71f916e (diff)
downloadlibvpx-ruddy.tar.gz
Msvc builds convert to windows path w/msys envv1.10.0ruddy
Bug: webm:1720 Change-Id: I56689ad408f8086c511e1711dfa9c8d404727b2e (cherry picked from commit 04086a30664d2a3e89d6a6e4e1c18f1a82c8f958)
-rw-r--r--build/make/msvs_common.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/make/msvs_common.sh b/build/make/msvs_common.sh
index 27ddf7fd9..3989fec0d 100644
--- a/build/make/msvs_common.sh
+++ b/build/make/msvs_common.sh
@@ -9,7 +9,8 @@
## be found in the AUTHORS file in the root of the source tree.
##
-if [ "$(uname -o 2>/dev/null)" = "Cygwin" ] \
+shell_name="$(uname -o 2>/dev/null)"
+if [[ "$shell_name" = "Cygwin" || "$shell_name" = "Msys" ]] \
&& cygpath --help >/dev/null 2>&1; then
FIXPATH='cygpath -m'
else