this should be "=", not "=="

This commit is contained in:
Antony Dovgal 2008-07-21 07:27:00 +00:00
parent 846e51b448
commit 1084d24e9d

View File

@ -5,7 +5,7 @@ PHP_ARG_ENABLE(hash, whether to enable hash support,
[ --disable-hash Disable hash support], yes)
if test "$PHP_MHASH" != "no"; then
if test "$PHP_HASH" == "no"; then
if test "$PHP_HASH" = "no"; then
PHP_HASH="yes"
fi