From: Kurt Zeilenga Date: Thu, 4 Feb 1999 18:52:26 +0000 (+0000) Subject: installed slapd.conf needs localstatedir translation. X-Git-Tag: OPENLDAP_REL_ENG_1_2_BETA2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=199aeee5b40ac5db215529dad2c0f4663bbdec70;p=thirdparty%2Fopenldap.git installed slapd.conf needs localstatedir translation. --- diff --git a/servers/slapd/Makefile.in b/servers/slapd/Makefile.in index c2fadfa82a..4eef9b39de 100644 --- a/servers/slapd/Makefile.in +++ b/servers/slapd/Makefile.in @@ -117,7 +117,9 @@ install-conf: FORCE else \ mode=644 ; \ fi ; \ - $(SED) -e 's;%SYSCONFDIR%;$(sysconfdir);' $(srcdir)/$$i > $$tmpcf ; \ + $(SED) -e 's;%SYSCONFDIR%;$(sysconfdir);' \ + -e 's;%LOCALSTATEDIR%;$(localstatedir);' \ + $(srcdir)/$$i > $$tmpcf ; \ if test ! -f $(sysconfdir)/$$i; then \ echo "installing $$i in $(sysconfdir)"; \ echo "$(INSTALL) $(INSTALLFLAGS) -m $$mode $$tmpcf $(sysconfdir)/$$i"; \