From: Wez Furlong Date: Tue, 3 Aug 2004 01:03:32 +0000 (+0000) Subject: Explicitly check PATH before cygwin for mc.exe, as we want MS message compiler, X-Git-Tag: PRE_ZEND_VM_DISPATCH_PATCH~260 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfbd57905e81fe1d493de06df4bf6f7128402674;p=php Explicitly check PATH before cygwin for mc.exe, as we want MS message compiler, not GNU Midnight Commander. --- 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');