summaryrefslogtreecommitdiffstats
path: root/server/Makefile.in
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-01-26 16:01:26 -0500
committerSimo Sorce <idra@samba.org>2009-01-27 11:44:12 -0500
commitde38bb8f2f04dcefbbe4a998c9bd8532c844bcc0 (patch)
tree07302d5e1c9c5c19e2df77dd7c19bf998ae14ac5 /server/Makefile.in
parent27ee5a204b8927adcc1e340b12d2edf1c70d9ba5 (diff)
downloadsssd-de38bb8f2f04dcefbbe4a998c9bd8532c844bcc0.tar.gz
sssd-de38bb8f2f04dcefbbe4a998c9bd8532c844bcc0.tar.xz
sssd-de38bb8f2f04dcefbbe4a998c9bd8532c844bcc0.zip
Preliminary support for enabling InfoPipe to listen on the D-BUS system bus. It will connect and authenticate successfully (using the included D-BUS policy file installed in the correct /etc directory. Does not yet listen for requests.
Diffstat (limited to 'server/Makefile.in')
-rw-r--r--server/Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/server/Makefile.in b/server/Makefile.in
index 656be8a6e..0206b372f 100644
--- a/server/Makefile.in
+++ b/server/Makefile.in
@@ -61,7 +61,10 @@ OBJS = $(SERVER_OBJ) @LIBREPLACEOBJ@ $(EXTRA_OBJ)
headers =
+DBUS_SYSBUS_POLICY_DIR = @sysbuspath@
+
LIBEXECBINS = sbin/sssd_nss sbin/sssd_dp sbin/sssd_be sbin/sssd_info sbin/sssd_pk
+DBUS_SYSBUS_POLICIES = infopipe/org.freeipa.sssd.infopipe.conf
BINS = sbin/sssd $(LIBEXECBINS)
SOLIBS = lib/libsss_proxy.$(SHLIBEXT)
@@ -90,10 +93,10 @@ distclean:: clean
realdistclean:: distclean
rm -f configure config.h.in
-install:: all installdirs installheaders installlibs installbin
+install:: all installdirs installheaders installlibs installbin installsupport
installdirs::
- mkdir -p $(DESTDIR)$(includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(sbindir)
+ mkdir -p $(DESTDIR)$(includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(sbindir) $(DBUS_SYSBUS_POLICY_DIR)
installheaders:: installdirs
ifneq (x$(headers), x)
@@ -107,4 +110,7 @@ endif
installbin:: installdirs
+installsupport:: installdirs
+ cp $(DBUS_SYSBUS_POLICIES) $(DBUS_SYSBUS_POLICY_DIR)
+
include $(srvdir)/server.mk