From 290748729dc3edf9ea1c680c8954441a5e367a44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Tue, 14 May 2024 21:38:52 +0200 Subject: [PATCH] pam_lastlog2: drop duplicate assignment pam_lastlog2_la_LDFLAGS MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The second assignment ends up on the linker/libtool commandline, potentially confusing the tools. Signed-off-by: Thomas Weißschuh --- pam_lastlog2/src/Makemodule.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pam_lastlog2/src/Makemodule.am b/pam_lastlog2/src/Makemodule.am index f9a9b6b41..bc932c4f2 100644 --- a/pam_lastlog2/src/Makemodule.am +++ b/pam_lastlog2/src/Makemodule.am @@ -16,7 +16,7 @@ pam_lastlog2_la_LIBADD = liblastlog2.la pam_lastlog2_la_LDFLAGS = $(SOLIB_LDFLAGS) -module -avoid-version -shared if HAVE_VSCRIPT -pam_lastlog2_la_LDFLAGS += pam_lastlog2_la_LDFLAGS += $(VSCRIPT_LDFLAGS),$(top_srcdir)/pam_lastlog2/src/pam_lastlog2.sym +pam_lastlog2_la_LDFLAGS += $(VSCRIPT_LDFLAGS),$(top_srcdir)/pam_lastlog2/src/pam_lastlog2.sym endif EXTRA_DIST += pam_lastlog2/src/pam_lastlog2.sym -- 2.47.3