pajoye          Sun Feb 17 01:29:17 2008 UTC

  Modified files:              
    /php-src/win32/build        confutils.js 
  Log:
   - 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! )
  
http://cvs.php.net/viewvc.cgi/php-src/win32/build/confutils.js?r1=1.71&r2=1.72&diff_format=u
Index: php-src/win32/build/confutils.js
diff -u php-src/win32/build/confutils.js:1.71 
php-src/win32/build/confutils.js:1.72
--- php-src/win32/build/confutils.js:1.71       Thu Jan 10 18:21:23 2008
+++ php-src/win32/build/confutils.js    Sun Feb 17 01:29:16 2008
@@ -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 @@
        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 @@
                additional_paths += ";" + cyg_path;
        }
 
+       additional_paths = additional_paths + ";" + php_build_bin_path;
+
        place = search_paths(exe, additional_paths, "PATH");
 
        if (place == true) {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to