From: Andreas Rottmann Subject: Link test-srfi-1 to libguile as well With an installed copy of libguile in place, test-srfi-1 would be run using that instead of the in-tree libguile. * test-suite/standalone/Makefile.am (test_srfi_1_LDADD): Add libguile. --- test-suite/standalone/Makefile.am | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/test-suite/standalone/Makefile.am b/test-suite/standalone/Makefile.am index a748c1e..68c8360 100644 --- a/test-suite/standalone/Makefile.am +++ b/test-suite/standalone/Makefile.am @@ -167,7 +167,8 @@ TESTS += test-extensions test_srfi_1_SOURCES = test-srfi-1.c test_srfi_1_CFLAGS = ${test_cflags} test_srfi_1_LDADD = \ - ${top_builddir}/srfi/libguile-srfi-srfi-1-v-@LIBGUILE_SRFI_SRFI_1_MAJOR@.la + ${top_builddir}/srfi/libguile-srfi-srfi-1-v-@LIBGUILE_SRFI_SRFI_1_MAJOR@.la \ + ${top_builddir}/libguile/libguile-@GUILE_EFFECTIVE_VERSION@.la check_PROGRAMS += test-srfi-1 TESTS += test-srfi-1 -- tg: (802b47b..) t/fix-test-srfi-1 (depends on: master)