From c175b28a32fed966a596a9df3529b3de5d46ad9b Mon Sep 17 00:00:00 2001 From: Brian Neradt Date: Mon, 28 Aug 2023 16:26:45 +0000 Subject: [PATCH] tools/jtest: use @SWOC_LIBS@ The tools/Makefile.am should reference @SWOC_LIBS@ instead of a hardcoded path in the working tree to support --with-libswoc. --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 3592e938f1e..ec9e07347dd 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -38,7 +38,7 @@ noinst_PROGRAMS = jtest/jtest endif jtest_jtest_SOURCES = jtest/jtest.cc -jtest_jtest_LDADD = $(top_builddir)/src/tscore/libtscore.a $(top_builddir)/src/tscpp/util/libtscpputil.la $(top_builddir)/lib/swoc/libtsswoc.la -lssl -lcrypto +jtest_jtest_LDADD = $(top_builddir)/src/tscore/libtscore.a $(top_builddir)/src/tscpp/util/libtscpputil.la @SWOC_LIBS@ -lssl -lcrypto if BUILD_HTTP_LOAD