diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-06-16 19:56:31 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-06-16 19:56:31 +0200 |
commit | c283f81cb7b3451cc3be75314d670cd5b8c7be3c (patch) | |
tree | 4a2dd6f545dd199a87caee0598d2cba90159530c /configure.ac | |
parent | be51950dc4c20ba35af26e4d4d16c5298629e7a3 (diff) |
gudev: fix typo in configure option
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 82695b9138..2fae2ccd30 100644 --- a/configure.ac +++ b/configure.ac @@ -78,7 +78,7 @@ AM_CONDITIONAL([ENABLE_EXTRAS], [test "x$enable_extras" = xyes]) AC_ARG_ENABLE([introspection], AS_HELP_STRING([--enable-introspection], [enable GObject introspection]), [], [enable_introspection=no]) -if test "$enable_introspection" = xyes; then +if test "x$enable_introspection" = xyes; then PKG_CHECK_MODULES([INTROSPECTION], [gobject-introspection-1.0 >= 0.6.2]) AC_DEFINE([ENABLE_INTROSPECTION], [1], [enable GObject introspection support]) AC_SUBST([G_IR_SCANNER], [$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)]) |