You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2016/05/27 19:39:57 UTC

[trafficserver] branch master updated: Fix ssl_cert_loader libtool linking.

This is an automated email from the ASF dual-hosted git repository.

jpeach pushed a commit to branch master
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/master by this push:
       new  2d5e6ee   Fix ssl_cert_loader libtool linking.
2d5e6ee is described below

commit 2d5e6eeec77fe49f9ab92b355dc777a8ca5c4956
Author: James Peach <jp...@apache.org>
AuthorDate: Fri May 27 12:36:33 2016 -0700

    Fix ssl_cert_loader libtool linking.
    
    When using libtool we should not directly poke into the .libs
    directory. Just tell libtool to add what we need and let it figure
    out what to do.
    
    This fixes an installation problem where libtool doesn't like it
    if pkglibdir does not end in the package name.
---
 plugins/experimental/ssl_cert_loader/Makefile.am | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/plugins/experimental/ssl_cert_loader/Makefile.am b/plugins/experimental/ssl_cert_loader/Makefile.am
index fbae483..6ef86f9 100644
--- a/plugins/experimental/ssl_cert_loader/Makefile.am
+++ b/plugins/experimental/ssl_cert_loader/Makefile.am
@@ -21,6 +21,5 @@ AM_CPPFLAGS += -I$(top_srcdir)/lib -I$(top_srcdir)/lib/ts
 pkglib_LTLIBRARIES = ssl_cert_loader.la
 
 ssl_cert_loader_la_SOURCES = ssl-cert-loader.cc domain-tree.cc
-ssl_cert_loader_la_LDFLAGS = $(TS_PLUGIN_LDFLAGS) -L$(top_builddir)/lib/tsconfig/.libs -ltsconfig
-
-
+ssl_cert_loader_la_LDFLAGS = $(TS_PLUGIN_LDFLAGS)
+ssl_cert_loader_la_LIBADD = $(top_builddir)/lib/tsconfig/libtsconfig.la

-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].