From 9d3d669cc353475cfe023c2a20cc51fd07428b82 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 30 Aug 2011 10:51:19 -0400 Subject: 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 --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 2cd08b8ec..c7bf8b09a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,6 +33,7 @@ initdir = @initdir@ logpath = @logpath@ pubconfpath = @pubconfpath@ pkgconfigdir = $(libdir)/pkgconfig +krb5rcachedir = @krb5rcachedir@ AM_CFLAGS = if WANT_AUX_INFO @@ -1097,6 +1098,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 \ -- cgit