aidan Tue Sep 7 08:03:24 2004 EDT
Modified files:
/phpdoc/en/install pecl.xml
Log:
Fixed build errors
http://cvs.php.net/diff.php/phpdoc/en/install/pecl.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/install/pecl.xml
diff -u phpdoc/en/install/pecl.xml:1.2 phpdoc/en/install/pecl.xml:1.3
--- phpdoc/en/install/pecl.xml:1.2 Mon Sep 6 07:55:06 2004
+++ phpdoc/en/install/pecl.xml Tue Sep 7 08:03:22 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<chapter id="install.pecl">
<title>Installation of PECL extensions</title>
@@ -161,7 +161,7 @@
<screen>
<![CDATA[
$ pear download extname
-$ gzip -d < extname.tgz |tar -xvf -
+$ gzip -d < extname.tgz | tar -xvf -
$ cd extname
$ phpize
$ ./configure && make
@@ -187,11 +187,13 @@
</simpara>
<para>
<screen>
+<![CDATA[
$ cd /your/phpsrcdir/ext
$ pear download extname
-$ gzip -d < extname.tgz |tar -xvf -
+$ gzip -d < extname.tgz | tar -xvf -
$ mv extname-x.x.x extname
$ rm package.xml
+]]>
</screen>
</para>
<simpara>
@@ -223,7 +225,7 @@
</simpara>
<para>
<screen>
-$ ./configure --help |grep extname
+$ ./configure --help | grep extname
</screen>
</para>
</simplesect>