mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
don't use cygpath -m for backward Cygwin compatibility
This commit is contained in:
parent
3de67a9843
commit
4733c7d447
@ -44,10 +44,10 @@ extDir=$DIRECT/src/extensions
|
|||||||
pSqueezer=$DIRECT/src/showbase/pandaSqueezer.py
|
pSqueezer=$DIRECT/src/showbase/pandaSqueezer.py
|
||||||
|
|
||||||
if [ $(uname) = "CYGWIN_NT-5.0" ]; then
|
if [ $(uname) = "CYGWIN_NT-5.0" ]; then
|
||||||
install_dir=$(cygpath -am $install_dir)
|
install_dir="$(cygpath -aw $install_dir)"
|
||||||
pyDir=$(cygpath -m $pyDir)
|
pyDir="$(cygpath -w $pyDir)"
|
||||||
extDir=$(cygpath -m $extDir)
|
extDir="$(cygpath -w $extDir)"
|
||||||
pSqueezer=$(cygpath -m $pSqueezer)
|
pSqueezer="$(cygpath -w $pSqueezer)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$buildType" = "linux" ]; then
|
if [ "$buildType" = "linux" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user