summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@novell.com>2008-06-03 22:46:26 +0000
committerHans Petter <hansp@src.gnome.org>2008-06-03 22:46:26 +0000
commit5cd0e7f67c2dd976b4624637f59f8acc158f7b3e (patch)
tree8892aacec2773dea412526bbd82804141a7f5f10
parent21d39b7a8382e69167e904d632c9d983778679a3 (diff)
downloadgvfs-5cd0e7f67c2dd976b4624637f59f8acc158f7b3e.tar.gz
Fix definition of giomodulesdir, so we install GIO modules to the libdir
2008-06-03 Hans Petter Jansson <hpj@novell.com> * configure.ac: Fix definition of giomodulesdir, so we install GIO modules to the libdir specified by the user. Fixes distcheck. svn path=/trunk/; revision=1794
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b908f8c9..9bdfaf67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-03 Hans Petter Jansson <hpj@novell.com>
+
+ * configure.ac: Fix definition of giomodulesdir, so we install
+ GIO modules to the libdir specified by the user. Fixes distcheck.
+
2008-05-28 Tomas Bzatek <tbzatek@redhat.com>
* daemon/gvfsbackendsmb.c: (do_open_for_read):
diff --git a/configure.ac b/configure.ac
index ad5bf84a..614f47ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ DBUS_SERVICE_DIR=$with_dbus_service_dir
AC_SUBST(DBUS_SERVICE_DIR)
dnl **** gio module path handling ****
-giomodulesdir=`pkg-config --variable=giomoduledir gio-2.0`
+giomodulesdir=`pkg-config --define-variable=libdir=$libdir --variable=giomoduledir gio-2.0`
AC_SUBST(giomodulesdir)
dnl ****************************