From 75d70b334b56fa29538d979c75bfbe976362e04f Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 8 May 2012 16:38:36 -0400 Subject: [PATCH] Add missing dependency on libreplace.la --- plugins/sample_group/Makefile.in | 5 +++-- plugins/system_group/Makefile.in | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/sample_group/Makefile.in b/plugins/sample_group/Makefile.in index b9812b50d..46b2001fc 100644 --- a/plugins/sample_group/Makefile.in +++ b/plugins/sample_group/Makefile.in @@ -33,7 +33,8 @@ LIBTOOL = @LIBTOOL@ @LT_STATIC@ INSTALL = $(SHELL) $(top_srcdir)/install-sh -c # Libraries -LIBS = $(LIBOBJDIR)/libreplace.la +LT_LIBS = $(LIBOBJDIR)libreplace.la +LIBS = $(LT_LIBS) # C preprocessor flags CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(top_srcdir) @CPPFLAGS@ @@ -80,7 +81,7 @@ Makefile: $(srcdir)/Makefile.in .c.lo: $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $< -sample_group.la: $(OBJS) +sample_group.la: $(OBJS) $(LT_LIBS) $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LTLDFLAGS) -o $@ $(OBJS) $(LIBS) -module -export-symbols $(srcdir)/sample_group.sym -avoid-version -rpath $(plugindir) pre-install: diff --git a/plugins/system_group/Makefile.in b/plugins/system_group/Makefile.in index 991998f8c..9e3770473 100644 --- a/plugins/system_group/Makefile.in +++ b/plugins/system_group/Makefile.in @@ -33,7 +33,8 @@ LIBTOOL = @LIBTOOL@ @LT_STATIC@ INSTALL = $(SHELL) $(top_srcdir)/install-sh -c # Libraries -LIBS = $(LIBOBJDIR)/libreplace.la +LT_LIBS = $(LIBOBJDIR)libreplace.la +LIBS = $(LT_LIBS) # C preprocessor flags CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(top_srcdir) @CPPFLAGS@ @@ -80,7 +81,7 @@ Makefile: $(srcdir)/Makefile.in .c.lo: $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) $< -system_group.la: $(OBJS) +system_group.la: $(OBJS) $(LT_LIBS) $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LTLDFLAGS) -o $@ $(OBJS) $(LIBS) -module -export-symbols $(srcdir)/system_group.sym -avoid-version -rpath $(plugindir) pre-install: -- 2.50.1