summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-08-25 19:33:39 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-08-25 19:33:39 +0000
commit8f9f3deb90b5283c46a3cb992c1be2d053c942c5 (patch)
tree41fe6149ad2ce75ac9d931c3349b35591cbc3336
parent54cad19215eb5c087995381cdc64b12a6be13979 (diff)
* configure.in: Fix DBUS_DAEMONDIR to use EXPANDED_BINDIR for the
default case
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c532089b..1f70b092 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-08-25 John (J5) Palmieri <johnp@redhat.com>
+ * configure.in: Fix DBUS_DAEMONDIR to use EXPANDED_BINDIR for the
+ default case
+
+2006-08-25 John (J5) Palmieri <johnp@redhat.com>
+
* configure.ac, bus/Makefile.am: Generalize kqueue support so that
it works on any system providing this interface, not only FreeBSD.
For example, NetBSD. (Patch by Julio M. Merino Vidal <jmmv at NetBSD dot org>)
diff --git a/configure.in b/configure.in
index b8394298..5a246362 100644
--- a/configure.in
+++ b/configure.in
@@ -994,7 +994,7 @@ AC_DEFINE_UNQUOTED(DBUS_USER,"$DBUS_USER", [User for running the system BUS daem
#### Directory to install dbus-daemon
if test -z "$with_dbus_daemondir" ; then
- DBUS_DAEMONDIR="${bindir}"
+ DBUS_DAEMONDIR=$EXPANDED_BINDIR
else
DBUS_DAEMONDIR=$with_dbus_daemondir
fi