From: Zbigniew Jędrzejewski-Szmek Date: Sat, 5 Jan 2013 03:52:32 +0000 (-0500) Subject: build-sys: fix message about gintrospection X-Git-Tag: v197~41 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=d66ee73a3dd7b5433fc0da3125bbdff740de7745;ds=sidebyside build-sys: fix message about gintrospection When gobject-introspection-devel was not available, the message was missing the yes/no part --- diff --git a/configure.ac b/configure.ac index b8ee626ae..535b71f66 100644 --- a/configure.ac +++ b/configure.ac @@ -82,7 +82,9 @@ AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [ m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [ GOBJECT_INTROSPECTION_CHECK([1.31.1]) -], [AM_CONDITIONAL([HAVE_INTROSPECTION], [false])]) +], [ + AM_CONDITIONAL([HAVE_INTROSPECTION], [false]) + enable_introspection=no]) AC_PATH_TOOL(OBJCOPY, objcopy) AC_PATH_TOOL(STRINGS, strings)