Fix missing 'test' in shell if statement.

svn path=/trunk/gtk-sharp/; revision=28947
This commit is contained in:
Peter Williams 2004-06-07 06:20:29 +00:00
parent 01e3962bc8
commit 0ddadd5dae
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-06-07 Peter Williams <peter@newton.cx>
* configure.in (MONODOC_REQUIRED_VERSION): Fix missing 'test' in
shell if statement.
2004-06-04 Todd Berman <tberman@sevenl.net>
* glib/Object.cs: ConnectDefaultHandlers needs to look at public api

View File

@ -106,7 +106,7 @@ PKG_CHECK_MODULES(MONODOC_DEPENDENCY, monodoc >= $MONODOC_REQUIRED_VERSION, enab
if test "x$enable_monodoc" = "xyes"; then
AC_PATH_PROG(MONODOC, monodoc, no)
if x$MONODOC = xno; then
if test x$MONODOC = xno; then
enable_monodoc=no
fi
else