diff options
author | ctrlaltca@gmail.com <> | 2012-03-26 10:09:51 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-03-26 10:09:51 +0000 |
commit | b5188eed81057371f0c03d8ebf250000328e033e (patch) | |
tree | 770e62577222a322274e87b58ccb0450abd8db0f /buildscripts/PhpDocumentor/phpdoc | |
parent | a3f64a4214fe0ae29ecea298542a15c6a0071a45 (diff) |
phpdocumentor: mute some warning, raise ram usage
Diffstat (limited to 'buildscripts/PhpDocumentor/phpdoc')
-rw-r--r-- | buildscripts/PhpDocumentor/phpdoc | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/buildscripts/PhpDocumentor/phpdoc b/buildscripts/PhpDocumentor/phpdoc index 7d350888..f492c186 100644 --- a/buildscripts/PhpDocumentor/phpdoc +++ b/buildscripts/PhpDocumentor/phpdoc @@ -1,13 +1,3 @@ -#!/bin/sh -if [ -z "$PHP" ]; then - PHP=`which php` -fi -(exec $PHP -C -q -d output_buffering=1 "$0" "$@") 2>/dev/null -if [ "$?" -ne "0" ]; then - echo "FAILED: Bad environment variable \$PHP (set to \"$PHP\")" - exit 1 -fi -exit 0 <?php /** * PHP auto documentor, like javadoc @@ -47,7 +37,7 @@ exit 0 * @todo CS cleanup - change package to PhpDocumentor */ -ob_end_clean(); // make output from autofind php code disapear +@ob_end_clean(); // make output from autofind php code disapear /** * utility: determine whether we're in PEAR or not |