mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
Fix missing 'test' in shell if statement.
svn path=/trunk/gtk-sharp/; revision=28947
This commit is contained in:
parent
01e3962bc8
commit
0ddadd5dae
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue