diff --git a/ChangeLog b/ChangeLog index f686acc27..c6af93b12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-06-07 Peter Williams + + * configure.in (MONODOC_REQUIRED_VERSION): Fix missing 'test' in + shell if statement. + 2004-06-04 Todd Berman * glib/Object.cs: ConnectDefaultHandlers needs to look at public api diff --git a/configure.in b/configure.in index aeec123fd..5c0a06ade 100644 --- a/configure.in +++ b/configure.in @@ -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