summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1999-08-31 13:04:06 +0000
committerJim Blandy <jimb@red-bean.com>1999-08-31 13:04:06 +0000
commit429ae86495e2569b84e066df935baedeeebc1536 (patch)
tree66bc07cc4ee036be25b4808df8ac1de09e39661c
parent94b4c096e2284ebed1c5b0942a1f8d15fc1fceaf (diff)
downloadguile-429ae86495e2569b84e066df935baedeeebc1536.tar.gz
* Makefile.am (check-local): Set GUILE_LOAD_PATH so the tests can
find (ice-9 boot-9) when Guile was compiled in a separate directory from the source. (Thanks to Rodney Brown.) * Makefile.in: Regenerated.
-rw-r--r--libguile/Makefile.am4
-rw-r--r--libguile/Makefile.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/libguile/Makefile.am b/libguile/Makefile.am
index 1e1cb078b..b94510604 100644
--- a/libguile/Makefile.am
+++ b/libguile/Makefile.am
@@ -112,8 +112,8 @@ gh_test_repl_SOURCES = gh_test_repl.c
gh_test_repl_LDADD = ${check_ldadd}
check-local:
- echo '(+ 1 2 3)' | ./gh_test_c; echo
- echo '(+ 1 2 3)' | ./gh_test_repl; echo
+ echo '(+ 1 2 3)' | GUILE_LOAD_PATH=${top_srcdir}:.. ./gh_test_c; echo
+ echo '(+ 1 2 3)' | GUILE_LOAD_PATH=${top_srcdir}:.. ./gh_test_repl; echo
EXTRA_DIST = ChangeLog-gh ChangeLog-scm ChangeLog-threads dynl-dl.c \
dynl-dld.c dynl-shl.c dynl-vms.c DYNAMIC-LINKING cpp_signal.c cpp_errno.c \
diff --git a/libguile/Makefile.in b/libguile/Makefile.in
index be19c69e2..6d4445cc4 100644
--- a/libguile/Makefile.in
+++ b/libguile/Makefile.in
@@ -656,8 +656,8 @@ maintainer-clean-generic clean mostlyclean distclean maintainer-clean
check-local:
- echo '(+ 1 2 3)' | ./gh_test_c; echo
- echo '(+ 1 2 3)' | ./gh_test_repl; echo
+ echo '(+ 1 2 3)' | GUILE_LOAD_PATH=${top_srcdir}:.. ./gh_test_c; echo
+ echo '(+ 1 2 3)' | GUILE_LOAD_PATH=${top_srcdir}:.. ./gh_test_repl; echo
libpath.h: $(srcdir)/Makefile.in $(top_builddir)/config.status
@echo "Generating libpath.h..."