diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-01-08 11:24:24 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-01-08 11:24:24 +0100 |
commit | 2ff62bee0469136ba19d6f099d9c3b028700e51f (patch) | |
tree | bcde0d879cc28b4ed930e2e63b3a1581850a45f1 | |
parent | 94e10f15e51ead788d9947e966878ebfdc95b7ce (diff) | |
download | strongswan-2ff62bee0469136ba19d6f099d9c3b028700e51f.tar.bz2 strongswan-2ff62bee0469136ba19d6f099d9c3b028700e51f.tar.xz |
checksum: Set rpath including DESTDIR for checksum_builder
This way libraries to which checksum_builder does not itself link,
like libtls and libradius, are found during DESTDIR installs.
Fixes #476.
-rw-r--r-- | src/checksum/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/checksum/Makefile.am b/src/checksum/Makefile.am index 2e1a1fb95..7a1e18bf4 100644 --- a/src/checksum/Makefile.am +++ b/src/checksum/Makefile.am @@ -11,6 +11,7 @@ checksum_builder_LDADD = \ $(top_builddir)/src/libhydra/libhydra.la \ $(top_builddir)/src/libcharon/libcharon.la \ $(DLLIB) +checksum_builder_LDFLAGS = -rpath '$(DESTDIR)$(ipseclibdir)' CLEANFILES = checksum.c $(EXTRA_PROGRAMS) |