From: Bart Hartgers Date: Fri, 15 Jan 1999 19:57:32 +0000 (+0000) Subject: Fixed a small typo... X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~770 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3a5a86d44cc157e9e00258586b33feb04737eb8a;p=openldap Fixed a small typo... --- diff --git a/servers/slapd/Makefile.in b/servers/slapd/Makefile.in index cb63a0191e..5f058307ac 100644 --- a/servers/slapd/Makefile.in +++ b/servers/slapd/Makefile.in @@ -117,11 +117,11 @@ install-conf: FORCE @-$(MKDIR) $(sysconfdir) @for i in $(CFFILES); do \ tmpcf=/tmp/$$i.$$ ; \ - if test $$i = slapd.conf ; then - mode=600 - else - mode=644 - fi + if test $$i = slapd.conf ; then \ + mode=600 ; \ + else \ + mode=644 ; \ + fi ; \ $(SED) -e 's;%SYSCONFDIR%;$(sysconfdir);' $(srcdir)/$$i > $$tmpcf ; \ if test ! -f $(sysconfdir)/$$i; then \ echo "installing $$i in $(sysconfdir)"; \