mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
72385ee806
--HG-- extra : rebase_source : bb3dff7e94b53efe79801a2b3bfc6cd78ef47ac3
9 lines
256 B
Plaintext
9 lines
256 B
Plaintext
# Pymake needs Windows-style paths. Use cmd.exe to hack around this.
|
|
mk_export_correct_style() {
|
|
if test -n "${_PYMAKE}"; then
|
|
mk_add_options "export $1=$(cmd.exe //c echo %$1%)"
|
|
else
|
|
mk_add_options "export $1=$(eval echo \$$1)"
|
|
fi
|
|
}
|