From 57b2fc463af385a1852af790a5763fc2066f9066 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 9 Feb 2009 00:27:35 -0400 Subject: [PATCH] Corrected libraries dependencies for some of the unit tests. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 45cd8a8a..7ff6a158 100644 --- a/Makefile.am +++ b/Makefile.am @@ -333,7 +333,7 @@ data_tests_SOURCES = \ test/data_tests.cc data_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -data_tests_LDADD = libledger_data.la $(math_tests_LDADD) +data_tests_LDADD = libledger_data.la $(expr_tests_LDADD) report_tests_SOURCES = \ test/UnitTests.cc \ @@ -341,7 +341,7 @@ report_tests_SOURCES = \ test/report_tests.cc report_tests_CPPFLAGS = -I$(srcdir)/test $(lib_cppflags) -report_tests_LDADD = libledger_report.la $(math_tests_LDADD) +report_tests_LDADD = libledger_report.la $(data_tests_LDADD) all_tests_sources = \ $(util_tests_SOURCES) \