summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--extras/gudev/.gitignore3
-rw-r--r--extras/gudev/Makefile.am2
3 files changed, 4 insertions, 3 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)])
diff --git a/extras/gudev/.gitignore b/extras/gudev/.gitignore
index 575f13d785..d20fa523e4 100644
--- a/extras/gudev/.gitignore
+++ b/extras/gudev/.gitignore
@@ -5,4 +5,5 @@ gudevenumtypes.c
gudevenumtypes.h
gudevmarshal.c
gudevmarshal.h
-
+GUdev-1.0.gir
+GUdev-1.0.typelib
diff --git a/extras/gudev/Makefile.am b/extras/gudev/Makefile.am
index 852e455f67..71565e2a48 100644
--- a/extras/gudev/Makefile.am
+++ b/extras/gudev/Makefile.am
@@ -88,7 +88,7 @@ GUdev-1.0.gir: libgudev-1.0.la $(G_IR_SCANNER) Makefile.am
--output $@ \
--pkg=glib-2.0 \
--pkg=gobject-2.0 \
- -I$(top_srcdir) \
+ -I$(top_srcdir)/extras \
-D_GUDEV_COMPILATION \
-DG_UDEV_API_IS_SUBJECT_TO_CHANGE \
$(top_srcdir)/extras/gudev/gudev.h \