Revision 1.228 of configure.in breaks the expansion of the
PEAR_INSTALLDIR variable.  I don't know why the $'s were escaped in
revision 1.228, but the following patch brings back what I think is
the intended behavior.

Is there a reason the $'s were escape, or can I commit my fix?

Index: configure.in
===================================================================
RCS file: /repository/php4/configure.in,v
retrieving revision 1.229
diff -u -r1.229 configure.in
--- configure.in        2001/04/04 20:52:43     1.229
+++ configure.in        2001/04/06 02:51:23
@@ -717,9 +717,9 @@
   PEAR_INSTALLDIR="$prefix/lib/php"
 fi
 
-EXTENSION_DIR="\${PEAR_INSTALLDIR}/extensions/$PART1-$PART2-$ZEND_MODULE_API_NO"
+EXTENSION_DIR="${PEAR_INSTALLDIR}/extensions/$PART1-$PART2-$ZEND_MODULE_API_NO"
 
-INCLUDE_PATH=".:\${PEAR_INSTALLDIR}"
+INCLUDE_PATH=".:${PEAR_INSTALLDIR}"
 
 PHP_BUILD_RPATH

-- 
Jon Parise ([EMAIL PROTECTED])  .  Rochester Inst. of Technology
http://www.csh.rit.edu/~jon/  :  Computer Science House Member

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to