From 088536f15b3ebe9fabdc30fc1591cf0b08b9ca2a Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Wed, 27 Dec 2006 13:54:25 +0000 Subject: [PATCH] MacOS X needs core-utils in the library load path for "make check" to work. While we're at it, might as well pull in libcore-utils.la, just in case. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15261 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnc-module/test/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gnc-module/test/Makefile.am b/src/gnc-module/test/Makefile.am index c813f7aeef..5e1035a842 100644 --- a/src/gnc-module/test/Makefile.am +++ b/src/gnc-module/test/Makefile.am @@ -1,6 +1,8 @@ SUBDIRS = mod-foo mod-bar mod-baz misc-mods -LDADD = ../libgncmodule.la ${GLIB_LIBS} -lltdl ${GUILE_LIBS} +LDADD = ../libgncmodule.la \ + ${top_builddir}/src/core-utils/libcore-utils.la \ + ${GLIB_LIBS} -lltdl ${GUILE_LIBS} AM_CFLAGS = \ -I${top_srcdir}/src \ @@ -23,6 +25,7 @@ TESTS = \ test-scm-init GNC_TEST_DEPS := \ + --gnc-module-dir ${top_builddir}/src/core-utils \ --gnc-module-dir ${top_builddir}/src/gnc-module \ --gnc-module-dir ${top_builddir}/src/gnc-module/test/mod-foo \ --gnc-module-dir ${top_builddir}/src/gnc-module/test/mod-bar \