diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-04 22:52:32 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-04 22:52:32 -0500 |
commit | d66ee73a3dd7b5433fc0da3125bbdff740de7745 (patch) | |
tree | 57ac19dcf9b469d268515d5d46b7eb4043d85eb2 /configure.ac | |
parent | c4eb236a2c9f07ec236c82f0113139c343a07224 (diff) |
build-sys: fix message about gintrospection
When gobject-introspection-devel was not available, the message
was missing the yes/no part
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b8ee626aee..535b71f662 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) |