diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-06-19 17:26:54 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-06-25 16:37:34 +0200 |
commit | d86cf32b4be46039a25986224a56fd7b03c84718 (patch) | |
tree | 0a5235d684abcf67ee4bddac581f501467946e96 | |
parent | 34a80708e271148f2987e7df02ab23b252ff39e0 (diff) | |
download | strongswan-d86cf32b4be46039a25986224a56fd7b03c84718.tar.bz2 strongswan-d86cf32b4be46039a25986224a56fd7b03c84718.tar.xz |
Removed -o argument when creating .../ipsec.d with install
This should have been removed with 2b52d5cb41.
-rw-r--r-- | src/starter/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/starter/Makefile.am b/src/starter/Makefile.am index 7888b85bc..c220c2e63 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 |