From: Tobias Brunner Date: Tue, 19 Jun 2012 15:26:54 +0000 (+0200) Subject: Removed -o argument when creating .../ipsec.d with install X-Git-Tag: 5.0.0~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d86cf32b4be46039a25986224a56fd7b03c84718;p=thirdparty%2Fstrongswan.git Removed -o argument when creating .../ipsec.d with install This should have been removed with 2b52d5cb41. --- diff --git a/src/starter/Makefile.am b/src/starter/Makefile.am index 7888b85bcb..c220c2e636 100644 --- a/src/starter/Makefile.am +++ b/src/starter/Makefile.am @@ -45,7 +45,7 @@ keywords.c: $(srcdir)/keywords.txt $(srcdir)/keywords.h $(GPERF) -m 10 -C -G -D -t < $(srcdir)/keywords.txt > $@ install-exec-local : - test -e "$(DESTDIR)${sysconfdir}/ipsec.d" || $(INSTALL) -o -d "$(DESTDIR)$(sysconfdir)/ipsec.d" || true + test -e "$(DESTDIR)${sysconfdir}/ipsec.d" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d" || true test -e "$(DESTDIR)${sysconfdir}/ipsec.d/cacerts" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/cacerts" || true test -e "$(DESTDIR)${sysconfdir}/ipsec.d/ocspcerts" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/ocspcerts" || true test -e "$(DESTDIR)${sysconfdir}/ipsec.d/certs" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/certs" || true