From 4c26bf2ba940b3a7bcb10b9a60e863c2c918efb8 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 3 Aug 2013 11:51:37 +0100 Subject: [PATCH] vars.am: Remove extra prerequisite from the `.to.t' rule. It doesn't do what one expects. --- vars.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/vars.am b/vars.am index a0c3a6e..b0cd53c 100644 --- a/vars.am +++ b/vars.am @@ -114,9 +114,8 @@ AM_CPPFLAGS = $(CATACOMB_INCLUDES) SUFFIXES += .c .$t .to .c.to: $(AM_V_CC)$(COMPILE) -c -DTEST_RIG -DSRCDIR=\"$(srcdir)\" $< -o $@ -.to.$t: libcatacomb.la - $(AM_V_CCLD)$(LINK) $< \ - $(TEST_LIBS) $(top_builddir)/libcatacomb.la \ +.to.$t: + $(AM_V_CCLD)$(LINK) $< $(TEST_LIBS) $(top_builddir)/libcatacomb.la \ $(mLib_LIBS) $(CATACOMB_LIBS) $(LIBS) .PRECIOUS: %.to CLEANFILES += *.to *.$t -- 2.11.0