diff options
author | Sterling Hughes <sterling@php.net> | 2003-06-30 05:01:18 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2003-06-30 05:01:18 +0000 |
commit | 0422e0d475e07d390cfbdd4d9c2413f2f57f90f8 (patch) | |
tree | 856fcc043bf970113f7bd885c00494dd488e0707 | |
parent | 57e1c829aa6490cd82b4f6c980bb995799c5b951 (diff) | |
download | php-git-0422e0d475e07d390cfbdd4d9c2413f2f57f90f8.tar.gz |
fix by Elfyn, use = not ==
-rw-r--r-- | ext/xsl/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xsl/config.m4 b/ext/xsl/config.m4 index d8db8bb963..11917ab9ad 100644 --- a/ext/xsl/config.m4 +++ b/ext/xsl/config.m4 @@ -23,7 +23,7 @@ PHP_ARG_WITH(xsl, for XSL support, [ --with-xsl[=DIR] Include new XSL support (requires libxslt >= 1.0.18). DIR is the libxslt install directory.]) -if test "$PHP_XSL" != "no" -a "$PHP_DOM" == "no"; then +if test "$PHP_XSL" != "no" -a "$PHP_DOM" = "no"; then AC_MSG_ERROR([XSL extension requires DOM extension, add --with-dom.]) fi |