svn: /web/doc-editor/trunk/php/ PreviewFile.php
[email protected] (Hannes Magnusson)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
bjori Wed, 08 Jun 2011 19:45:43 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=311945
Log:
tell configure.php where php is
Changed paths:
U web/doc-editor/trunk/php/PreviewFile.php
Modified: web/doc-editor/trunk/php/PreviewFile.php
===================================================================
--- web/doc-editor/trunk/php/PreviewFile.php 2011-06-08 19:44:53 UTC (rev 311944)
+++ web/doc-editor/trunk/php/PreviewFile.php 2011-06-08 19:45:43 UTC (rev 311945)
@@ -77,7 +77,7 @@
}
// We start the build for this file
- $cmd = 'cd '.$appConf[$project]['vcs.path'].'; '.$appConf['GLOBAL_CONFIGURATION']['php.bin'].' doc-base/configure.php --generate='.$this->path.' ; '.$appConf['GLOBAL_CONFIGURATION']['php.bin'].' ../phd/render.php --package PHP --format php --memoryindex -d doc-base/.manual.xml --output '.$this->outputDir;
+ $cmd = 'cd '.$appConf[$project]['vcs.path'].'; '.$appConf['GLOBAL_CONFIGURATION']['php.bin'].' doc-base/configure.php --with-php=' . $appConf['GLOBAL_CONFIGURATION']['php.bin'] . ' --generate='.$this->path.' ; '.$appConf['GLOBAL_CONFIGURATION']['php.bin'].' ../phd/render.php --package PHP --format php --memoryindex -d doc-base/.manual.xml --output '.$this->outputDir;
exec("$cmd", $output);
$this->buildCmd = $cmd;
$this->buildLog = $output;