mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
c18e108e90
--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
|
|
}
|