|
|
905b4d |
From 6686822567fba8dd25ed0bd2e235c30c60eeccf2 Mon Sep 17 00:00:00 2001
|
|
|
905b4d |
From: Jakub Hrozek <jhrozek@redhat.com>
|
|
|
905b4d |
Date: Tue, 11 Nov 2014 15:59:22 +0100
|
|
|
905b4d |
Subject: [PATCH 91/92] BUILD: Touch files in DESTDIR
|
|
|
905b4d |
MIME-Version: 1.0
|
|
|
905b4d |
Content-Type: text/plain; charset=UTF-8
|
|
|
905b4d |
Content-Transfer-Encoding: 8bit
|
|
|
905b4d |
|
|
|
905b4d |
Related:
|
|
|
905b4d |
https://fedorahosted.org/sssd/ticket/2370
|
|
|
905b4d |
|
|
|
905b4d |
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
|
|
|
905b4d |
---
|
|
|
905b4d |
Makefile.am | 12 ++++++------
|
|
|
905b4d |
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
905b4d |
|
|
|
905b4d |
diff --git a/Makefile.am b/Makefile.am
|
|
|
905b4d |
index d58fcb9501c44ccf0d5814e1f2070cd82fa8be61..156ef3c4eab1510126d2bfb47c06163885b8acfe 100644
|
|
|
905b4d |
--- a/Makefile.am
|
|
|
905b4d |
+++ b/Makefile.am
|
|
|
905b4d |
@@ -2884,13 +2884,13 @@ else
|
|
|
905b4d |
endif
|
|
|
905b4d |
|
|
|
905b4d |
if SSSD_USER
|
|
|
905b4d |
- -chgrp $(SSSD_USER) $(sssdlibexecdir)/ldap_child
|
|
|
905b4d |
- chmod 4750 $(sssdlibexecdir)/ldap_child
|
|
|
905b4d |
- -chgrp $(SSSD_USER) $(sssdlibexecdir)/krb5_child
|
|
|
905b4d |
- chmod 4750 $(sssdlibexecdir)/krb5_child
|
|
|
905b4d |
+ -chgrp $(SSSD_USER) $(DESTDIR)$(sssdlibexecdir)/ldap_child
|
|
|
905b4d |
+ chmod 4750 $(DESTDIR)$(sssdlibexecdir)/ldap_child
|
|
|
905b4d |
+ -chgrp $(SSSD_USER) $(DESTDIR)$(sssdlibexecdir)/krb5_child
|
|
|
905b4d |
+ chmod 4750 $(DESTDIR)$(sssdlibexecdir)/krb5_child
|
|
|
905b4d |
if BUILD_SEMANAGE
|
|
|
905b4d |
- -chgrp $(SSSD_USER) $(sssdlibexecdir)/selinux_child
|
|
|
905b4d |
- chmod 4750 $(sssdlibexecdir)/selinux_child
|
|
|
905b4d |
+ -chgrp $(SSSD_USER) $(DESTDIR)$(sssdlibexecdir)/selinux_child
|
|
|
905b4d |
+ chmod 4750 $(DESTDIR)$(sssdlibexecdir)/selinux_child
|
|
|
905b4d |
endif
|
|
|
905b4d |
endif
|
|
|
905b4d |
|
|
|
905b4d |
--
|
|
|
905b4d |
1.9.3
|
|
|
905b4d |
|