svn: /web/doc-editor/trunk/php/ RepositoryManager.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Thu, 22 Apr 2010 11:31:12 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=298312
Log:
Specify php binary path as an option for configure.php script
Changed paths:
U web/doc-editor/trunk/php/RepositoryManager.php
Modified: web/doc-editor/trunk/php/RepositoryManager.php
===================================================================
--- web/doc-editor/trunk/php/RepositoryManager.php 2010-04-22 11:27:12 UTC (rev 298311)
+++ web/doc-editor/trunk/php/RepositoryManager.php 2010-04-22 11:31:12 UTC (rev 298312)
@@ -322,8 +322,9 @@
"logContent" => ""
);
- $cmd = 'cd '.realpath($appConf[$project]['vcs.configure.script.path']).';'.
- $appConf['GLOBAL_CONFIGURATION']['php.bin'].' configure.php '
+ $cmd = 'cd '.realpath($appConf[$project]['vcs.configure.script.path']).';'
+ .$appConf['GLOBAL_CONFIGURATION']['php.bin'].' configure.php --with-php='
+ .$appConf['GLOBAL_CONFIGURATION']['php.bin'].' '
.$appConf[$project]['vcs.configure.script.options'];
$cmd = str_replace("{LangCode}", $lang, $cmd).';';