- FAQ/configure{,.in} ... test '==' => '='

This commit is contained in:
Andreas Kool 2000-01-12 23:23:44 +00:00
parent ebb0327e3e
commit cf7b5a276c
2 changed files with 2 additions and 2 deletions

2
FAQ/configure vendored
View File

@ -733,7 +733,7 @@ else
echo "$ac_t""no" 1>&6
fi
if test "$C_SGML2HTML" == "sgml2html-not-found-or-installed" ; then
if test "$C_SGML2HTML" = "sgml2html-not-found-or-installed" ; then
{ echo "configure: error: sgml2html not found please install it." 1>&2; exit 1; }
fi

View File

@ -15,7 +15,7 @@ AC_PATH_PROG(C_ZIP, zip,,$PATH:/usr/sbin:/sbin:/usr/local/bin)
AC_PATH_PROG(C_GZIP, gzip,,$PATH:/usr/sbin:/sbin:/usr/local/bin)
AC_PATH_PROG(C_SGML2HTML, sgml2html,sgml2html-not-found-or-installed,$PATH:/usr/sbin:/sbin:/usr/local/bin)
AC_PATH_PROG(C_SGML2TXT, sgml2txt,sgml2txt-not-found-or-installed,$PATH:/usr/sbin:/sbin:/usr/local/bin)
if test "$C_SGML2HTML" == "sgml2html-not-found-or-installed" ; then
if test "$C_SGML2HTML" = "sgml2html-not-found-or-installed" ; then
AC_MSG_ERROR(sgml2html not found please install it.)
fi