Skip to content

Commit 0c406c5

Browse files
ezelkow1zwoop
authored andcommitted
Change AM_LDFLAGS to be an addition, not an overwrite, in the plugin makefile. This allows the various libpaths, and specifically the rpath, to be transferred over to plugins when used for tests. Currently separate test applications will build properly against things like a custom openssl installation, however when they run they do not know the correct location unless you have set the LD path on the system to include that directory. Passing this information around allows the ATS library rpath to also be used for the test applications so they can determine at runtime where to look for libraries (#6835)
(cherry picked from commit 78028cf)
1 parent f58de54 commit 0c406c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pkglib_LTLIBRARIES =
2525

2626
SUBDIRS =
2727

28-
AM_LDFLAGS = $(TS_PLUGIN_LD_FLAGS)
28+
AM_LDFLAGS += $(TS_PLUGIN_LD_FLAGS)
2929

3030
include authproxy/Makefile.inc
3131
include background_fetch/Makefile.inc

0 commit comments

Comments
 (0)