Files
php-gtk-src/buildconf
T
Andrei Zmievski eb3c3b2feb buildconf now takes an optional parameter to specify the location of
'phpize' script. This is needed if you have both PHP 5 and PHP 4
installed and the default location is incorrect. The switch is
--with-phpize=<path to phpize>.
2005-01-17 18:05:59 +00:00

23 lines
323 B
Bash
Executable File

#!/bin/sh
# $Id$
rm -f build2/generated_lists
PHPIZE=phpize
for bc_option
do
bc_optarg=`expr "x$bc_option" : 'x[^=]*=\(.*\)'`
case $bc_option in
--with-phpize=*)
if [ "x$bc_optarg" != "x" ]; then
rm -f buildmk.stamp
PHPIZE=$bc_optarg
fi
;;
esac
done
PHPIZE=$PHPIZE ${MAKE:-make} -s -f build2/build.mk