mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-03 01:11:32 +00:00
Merge pull request #2017 from sthalik/pr/allow-build-under-cygwin-msys2-etc
fix build with CI dependencies on all Cygwin derivatives
This commit is contained in:
commit
461ba74d6d
1 changed files with 5 additions and 1 deletions
|
@ -194,7 +194,11 @@ download() {
|
||||||
}
|
}
|
||||||
|
|
||||||
real_pwd() {
|
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=""
|
CMAKE_OPTS=""
|
||||||
|
|
Loading…
Reference in a new issue