From: Pierre Joye Date: Sun, 17 Feb 2008 01:29:16 +0000 (+0000) Subject: - MFB: add PHP_PHP_BUILD\bin to the path in PATH_PROG (option set with --with-php... X-Git-Tag: RELEASE_2_0_0a1~452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00150da5b62228719c35c67e9e878f0fa0034b5d;p=php - MFB: add PHP_PHP_BUILD\bin to the path in PATH_PROG (option set with --with-php-builds=[PATH] the zip.zip contains all we need (except re2c! ) --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index f70209164a..6e040aa1dc 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.71 2008-01-10 18:21:23 rrichards Exp $ +// $Id: confutils.js,v 1.72 2008-02-17 01:29:16 pajoye Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -501,6 +501,7 @@ function PATH_PROG(progname, additional_paths, symbol) var exe; var place; var cyg_path = PHP_CYGWIN + "\\bin;" + PHP_CYGWIN + "\\usr\\local\\bin"; + var php_build_bin_path = PHP_PHP_BUILD + "\\bin" exe = progname + ".exe"; @@ -510,6 +511,8 @@ function PATH_PROG(progname, additional_paths, symbol) additional_paths += ";" + cyg_path; } + additional_paths = additional_paths + ";" + php_build_bin_path; + place = search_paths(exe, additional_paths, "PATH"); if (place == true) {