Commit: 3cd441f7309bc2f377766988cd6a5782abceb784 Author: Anatol Belski <[email protected]> Wed, 28 Jan 2015 19:14:00 +0100 Parents: 343832b68de4f8651838c6d064dc1e66035ed684 Branches: master pecl_legacy
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=3cd441f7309bc2f377766988cd6a5782abceb784 Log: fix appending non core config lines Changed paths: M client/include/PeclExt.php Diff: diff --git a/client/include/PeclExt.php b/client/include/PeclExt.php index 6fa08b5..0ad1ae8 100644 --- a/client/include/PeclExt.php +++ b/client/include/PeclExt.php @@ -406,8 +406,10 @@ class PeclExt $this->setupNonCoreExtDeps(); } if (!empty($this->non_core_ext_deps)) { - $ret .= ' '; - $ret .= $this->getNonCoreExtDepsConfLines(); + /*$ret .= ' '; + $ret .= $this->getNonCoreExtDepsConfLines();*/ + + $ret = $this->getNonCoreExtDepsConfLines() . ' ' . $ret; } } else { $data['exts'] = array(); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
