]> granicus.if.org Git - libvpx/commitdiff
Msvc builds convert to windows path w/msys env
authorAdam B. Goode <adam.mckee84@gmail.com>
Wed, 17 Mar 2021 19:11:57 +0000 (14:11 -0500)
committerJames Zern <jzern@google.com>
Wed, 17 Mar 2021 23:49:53 +0000 (16:49 -0700)
Bug: webm:1720
Change-Id: I56689ad408f8086c511e1711dfa9c8d404727b2e

build/make/msvs_common.sh

index 27ddf7fd91d7f34d87e4de8e0b9a18628cbb2d1b..3989fec0d5185137b1a03665b6a41dcfaeda9462 100644 (file)
@@ -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