diff options
author | Tobias Brunner <tobias@strongswan.org> | 2009-07-20 21:13:45 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2009-07-20 21:13:45 +0200 |
commit | 9af7715c3ddaa91a30c390cff5576cb29c2f241a (patch) | |
tree | 30b8b3961568da4b28dfdbe5616eadc6c5238f92 /src/Makefile.am | |
parent | 7cdf712d3e22c68aa7945b6b037059221339f3f2 (diff) | |
download | strongswan-9af7715c3ddaa91a30c390cff5576cb29c2f241a.tar.bz2 strongswan-9af7715c3ddaa91a30c390cff5576cb29c2f241a.tar.xz |
Fixed installation of config files in out-of-tree builds.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9eacf5ef5..ebdaa6a63 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -52,4 +52,4 @@ EXTRA_DIST = strongswan.conf install-exec-local : test -e "$(DESTDIR)${sysconfdir}" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)" - test -e "$(DESTDIR)$(sysconfdir)/strongswan.conf" || $(INSTALL) -o ${ipsecuid} -g ${ipsecgid} -m 640 strongswan.conf $(DESTDIR)$(sysconfdir)/strongswan.conf || true + test -e "$(DESTDIR)$(sysconfdir)/strongswan.conf" || $(INSTALL) -o ${ipsecuid} -g ${ipsecgid} -m 640 $(srcdir)/strongswan.conf $(DESTDIR)$(sysconfdir)/strongswan.conf || true |