diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2009-03-06 21:18:49 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-03-06 16:07:23 -0500 |
commit | fc53d75bb97c97775c5afd274727ff47c966c93c (patch) | |
tree | 34a0a28410bda91b9a7c7f831a2638eeeb54fcb2 /server/Makefile.in | |
parent | bf39e1e515e19131751769bb0650035e6590198f (diff) | |
download | sssd-fc53d75bb97c97775c5afd274727ff47c966c93c.tar.gz sssd-fc53d75bb97c97775c5afd274727ff47c966c93c.tar.xz sssd-fc53d75bb97c97775c5afd274727ff47c966c93c.zip |
sss_userdel
Also install tools into /sbin, own them in specfile
Diffstat (limited to 'server/Makefile.in')
-rw-r--r-- | server/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index 39b6306f3..97b711281 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -117,7 +117,7 @@ endif ifneq (x$(HAVE_POLICYKIT), x) LIBEXECBINS += sbin/sssd_pk endif -TOOLSBINS = sbin/sss_useradd +TOOLSBINS = sbin/sss_useradd sbin/sss_userdel BINS = sbin/sssd $(LIBEXECBINS) $(TOOLSBINS) ifneq (x$(HAVE_TESTS), x) @@ -162,6 +162,7 @@ testclean:: install:: all installdirs installheaders installlibs installbin installsupport ${INSTALLCMD} -d $(DESTDIR)$(sbindir) ${INSTALLCMD} -m 755 sbin/sssd $(DESTDIR)$(sbindir) + ${INSTALLCMD} -m 755 $(TOOLSBINS) $(DESTDIR)$(sbindir) ${INSTALLCMD} -d $(DESTDIR)$(SSSD_LIBEXEC_PATH) ${INSTALLCMD} -m 755 $(LIBEXECBINS) $(DESTDIR)$(SSSD_LIBEXEC_PATH) |