Commit: c55b9f29e14955a532c279fe7629a2e1e0521170 Author: Anatol Belski <[email protected]> Mon, 11 May 2015 14:58:28 +0200 Parents: b3d97f430248459277d27662d848ba44051fec2e Branches: master pecl_legacy
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=c55b9f29e14955a532c279fe7629a2e1e0521170 Log: add core deps to the pickle build Changed paths: M client/include/PickleBuildVC.php Diff: diff --git a/client/include/PickleBuildVC.php b/client/include/PickleBuildVC.php index 00dbe8a..8a372f6 100644 --- a/client/include/PickleBuildVC.php +++ b/client/include/PickleBuildVC.php @@ -48,6 +48,10 @@ class PickleBuildVC if (!file_exists($this->pecl_deps_base)) { throw new \Exception("Dependency libs not found under '{$this->pecl_deps_base}'"); } + $this->core_deps_base = $branch->config->builds[$build_name]['core_deps_base']; + if (!file_exists($this->core_deps_base)) { + throw new \Exception("Dependency libs not found under '{$this->core_deps_base}'"); + } $vc_env_prefix = strtoupper($this->compiler); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
