diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-09 00:27:35 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-09 00:27:35 -0400 |
commit | 57b2fc463af385a1852af790a5763fc2066f9066 (patch) | |
tree | 7f83dba66553c7d5c194a2da978e75781d015417 | |
parent | 4a463aca3bece8f2beb68b0fc4d347a713ff07a6 (diff) | |
download | fork-ledger-57b2fc463af385a1852af790a5763fc2066f9066.tar.gz fork-ledger-57b2fc463af385a1852af790a5763fc2066f9066.tar.bz2 fork-ledger-57b2fc463af385a1852af790a5763fc2066f9066.zip |
Corrected libraries dependencies for some of the unit tests.
-rw-r--r-- | Makefile.am | 4 |
1 files 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) \ |