Commit:    1846695383188ddabebf0a9550854b2ab5154755
Author:    Anatol Belski <[email protected]>         Thu, 17 Aug 2017 13:35:42 +0200
Parents:   e6f7bf36d790c84ed9a351bdd761f2728e1b5e9b
Branches:  master

Link:       
http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=1846695383188ddabebf0a9550854b2ab5154755

Log:
fix path

Changed paths:
  M  include/BuildVC.php


Diff:
diff --git a/include/BuildVC.php b/include/BuildVC.php
index d357dbf..867925a 100644
--- a/include/BuildVC.php
+++ b/include/BuildVC.php
@@ -123,7 +123,7 @@ class BuildVC {
        function isPgoSetup()
        {
                $env = $this->env;
-               $env["Path"] = dirname($this->build_dir) . DIRECTORY_SEPARATOR 
. "deps;" . $env["Path"];
+               $env["Path"] = dirname($this->build_dir) . DIRECTORY_SEPARATOR 
. "deps" . DIRECTORY_SEPARATOR . "bin;" . $env["Path"];
 
                $cmd = 'phpsdk_pgo --ready';
                $ret = exec_single_log($cmd, $this->build_dir, $env);


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

Reply via email to