From 7afe8daaf5ba221968a3e2beff61fa653f497cb1 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 8 May 2018 17:05:00 +0200 Subject: [PATCH] Ensure -export-symbols-regex is not lost. An earlier commit accidentily caused libmeshlink_la_LDFLAGS to be overwritten later in src/Makefile.am, and this caused -export-symbols-regex to be dropped, thereby exposing internal symbols of the library. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 7b8dd148..1e203778 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -86,7 +86,7 @@ if MINGW libmeshlink_la_CFLAGS += -I${top_srcdir}/catta/src/compat/windows/include/ endif -libmeshlink_la_LDFLAGS = $(PTHREAD_LIBS) +libmeshlink_la_LDFLAGS += $(PTHREAD_LIBS) libmeshlink_la_LIBADD = ${top_builddir}/catta/src/libcatta.la libmeshlink_la_SOURCES += \ -- 2.39.2