diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2011-08-30 10:51:19 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-09-02 09:59:21 -0400 |
commit | 4b6a0d0b3d42e5fdb457f47d9adfa5e66b160256 (patch) | |
tree | eadd06382bc86d3f0f2ffa0b76590e2fe8d9efcb /Makefile.am | |
parent | 1dd195b9a3df01a0ef51e9f963201f1f79d1f90b (diff) | |
download | sssd2-4b6a0d0b3d42e5fdb457f47d9adfa5e66b160256.tar.gz sssd2-4b6a0d0b3d42e5fdb457f47d9adfa5e66b160256.tar.xz sssd2-4b6a0d0b3d42e5fdb457f47d9adfa5e66b160256.zip |
Add option to specify the kerberos replay cache dir
Adds a configure option to set the distribution default as well as
an sssd.conf option to override it.
https://fedorahosted.org/sssd/ticket/980
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4e2e26ba..144060f0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,6 +34,7 @@ systemdunitdir = @systemdunitdir@ logpath = @logpath@ pubconfpath = @pubconfpath@ pkgconfigdir = $(libdir)/pkgconfig +krb5rcachedir = @krb5rcachedir@ AM_CFLAGS = if WANT_AUX_INFO @@ -1141,6 +1142,9 @@ install-data-hook: rm $(DESTDIR)/$(nsslibdir)/libnss_sss.so.2 \ $(DESTDIR)/$(nsslibdir)/libnss_sss.so mv $(DESTDIR)/$(nsslibdir)/libnss_sss.so.2.0.0 $(DESTDIR)/$(nsslibdir)/libnss_sss.so.2 + if [ ! $(krb5rcachedir) = "__LIBKRB5_DEFAULTS__" ]; then \ + mkdir -p $(DESTDIR)/$(krb5rcachedir) ; \ + fi uninstall-hook: if [ -f $(abs_builddir)/src/config/.files ]; then \ |