diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2023-03-08 15:36:58 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-30 22:57:19 +0200 |
commit | 5b86b6d345f8ab3800b1ff1818d7015830ba0bf6 (patch) | |
tree | abfbd097960a4ba93acab881f30fecad24f70edd | |
parent | 8d4c2580725a02951aeb78dc5c6d0e49220a5e9f (diff) |
Somehow, the stubs in tests/client.scm do not work when compiled
modules are found. This could be a guile bug.
* Makefile.am (SCM_LOG_DRIVER): Do not use pre-inst-env. Set only the
load path.
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 86ba4f0..3e57e63 100644 --- a/Makefile.am +++ b/Makefile.am @@ -70,8 +70,7 @@ EXTRA_DIST += $(TESTS) \ AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0 SCM_LOG_DRIVER = \ - $(top_builddir)/pre-inst-env \ - $(GUILE) --no-auto-compile -e main \ + $(GUILE) --no-auto-compile -L $(top_srcdir) -e main \ $(top_srcdir)/build-aux/test-driver.scm AM_SCM_LOG_DRIVER_FLAGS = --brief=yes |