Browse Source

Fixed bug: #12726. If --with-xxx is used in configure line without any

value, it gets value 'yes'.
experimental/rand_redesign
foobar 25 years ago
parent
commit
5b2f8a0c22
  1. 2
      configure.in

2
configure.in

@ -510,7 +510,7 @@ if test "$PHP_PEAR" != "no"; then
PEAR_DIR=pear
fi
if test "$PHP_PEAR" = "DEFAULT"; then
if test "$PHP_PEAR" = "DEFAULT" -o "x$PHP_PEAR" = "xyes"; then
case $PHP_LAYOUT in
GNU) PEAR_INSTALLDIR=$datadir/pear;;
*) PEAR_INSTALLDIR=$libdir/php;;

Loading…
Cancel
Save