Merge pull request #2017 from sthalik/pr/allow-build-under-cygwin-msys2-etc

fix build with CI dependencies on all Cygwin derivatives
pull/541/head
Bret Curtis 6 years ago committed by GitHub
commit 461ba74d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -194,7 +194,11 @@ download() {
}
real_pwd() {
pwd | sed "s,/\(.\),\1:,"
if type cygpath >/dev/null 2>&1; then
cygpath -am "$PWD"
else
pwd # not git bash, Cygwin or the like
fi
}
CMAKE_OPTS=""

Loading…
Cancel
Save