diff options
author | Wez Furlong <wez@php.net> | 2004-08-03 01:03:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-08-03 01:03:32 +0000 |
commit | bfbd57905e81fe1d493de06df4bf6f7128402674 (patch) | |
tree | cade44d8b8385cffa1da977e188a94dae50bfb23 | |
parent | bb099765a33402f7532d61ad8e08cfbba7774f23 (diff) | |
download | php-git-bfbd57905e81fe1d493de06df4bf6f7128402674.tar.gz |
Explicitly check PATH before cygwin for mc.exe, as we want MS message compiler,
not GNU Midnight Commander.
-rw-r--r-- | win32/build/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 97d3d8a900..015e121c18 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -16,7 +16,7 @@ PATH_PROG('flex'); PATH_PROG('re2c'); PATH_PROG('zip'); PATH_PROG('lemon'); -PATH_PROG('mc'); +PATH_PROG('mc', WshShell.Environment("Process").Item("PATH")); ARG_ENABLE('debug', 'Compile with debugging symbols', "no"); ARG_ENABLE('zts', 'Thread safety', 'yes'); |