summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2011-05-24 22:00:59 +0200
committerKjartan Maraas <kmaraas@gnome.org>2011-05-24 22:01:10 +0200
commit41ce8d479417f752a1f101e4e68944d0f69b9e4f (patch)
tree9717ea065fbda8a0609a842a764dcd74cea75bf7
parent95454a76a40882d1912e83b141ffc398e2735aa8 (diff)
downloadgconf-41ce8d479417f752a1f101e4e68944d0f69b9e4f.tar.gz
Fix distcheck. You should always use the same prefix as GLib for you gio
modules for it to work it seems. But using pkg-config --variable giomoduledir gio-2.0 breaks distcheck because it then tries to overwrite stuff in /usr/lib/gio/modules. With good help from Company, davidz, chpe and mclasen and walters :-)
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 5dc0d7f5..5e62509e 100644
--- a/configure.in
+++ b/configure.in
@@ -242,8 +242,8 @@ if test "x$enable_gsettings_backend" != "xno" ; then
fi
else
enable_gsettings_backend=yes
- AC_SUBST(GIO_MODULE_DIR,
- `pkg-config --variable giomoduledir gio-2.0`)
+ GIO_MODULE_DIR=$libdir/gio/modules
+ AC_SUBST(GIO_MODULE_DIR)
AC_PATH_PROG(GIO_QUERYMODULES, gio-querymodules, no)
fi
fi