diff options
| author | Stig Bakken <ssb@php.net> | 2002-06-16 05:43:48 +0000 |
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 2002-06-16 05:43:48 +0000 |
| commit | c55ce8b07f2d1d82a1bb4bd7dabf84bfc3f22888 (patch) | |
| tree | bcabcb40725a4af741184073421cdedf89446c45 | |
| parent | d8a361b8d5b8390c040f6be7fe0ba3334c1ac3d0 (diff) | |
| download | php-git-c55ce8b07f2d1d82a1bb4bd7dabf84bfc3f22888.tar.gz | |
* set include_path when running "pear"
| -rw-r--r-- | pear/package-PEAR.xml | 4 | ||||
| -rw-r--r-- | pear/scripts/pear.in | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/pear/package-PEAR.xml b/pear/package-PEAR.xml index 1e140982ef..591a6965ee 100644 --- a/pear/package-PEAR.xml +++ b/pear/package-PEAR.xml @@ -33,8 +33,9 @@ <release> <version>0.91-dev</version> <state>beta</state> - <date>YYYY-MM-DD</date> + <date>2002-06-15</date> <notes> +* fix for XML-RPC bug that made some remote commands fail </notes> <filelist> <file role="data" name="package.dtd"/> @@ -73,6 +74,7 @@ <file baseinstalldir="/" role="script" install-as="pear" name="pear.in"> <replace from="@prefix@/bin" to="PHP_BINDIR" type="php-const"/> <replace from="@pear_version@" to="version" type="package-info"/> + <replace from="@include_path@" to="php_dir" type="pear-config"/> </file> <file baseinstalldir="/" role="script" platform="windows" name="pear.bat"></file> </dir> diff --git a/pear/scripts/pear.in b/pear/scripts/pear.in index cd81aa0a40..f70fce65f9 100644 --- a/pear/scripts/pear.in +++ b/pear/scripts/pear.in @@ -1,4 +1,4 @@ -#!@prefix@/bin/php -Cq +#!@prefix@/bin/php -Cqd include_path=@include_path@ <?php // -*- PHP -*- // // +----------------------------------------------------------------------+ |
