From c821364d6ede9e9c076fc6997b668e8082e095fb Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 2 Oct 2020 13:12:25 +0000 Subject: [PATCH] Bugfix: Tests need the build directory in PATH, not source directory --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 3c1c888..d65867f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,6 +31,6 @@ TESTS = \ tests/encode-b58c.sh \ tests/encode-fail.sh SH_LOG_COMPILER = /bin/sh -AM_TESTS_ENVIRONMENT = PATH='$(srcdir)':"$$PATH"; export PATH; +AM_TESTS_ENVIRONMENT = PATH='$(abs_top_builddir)':"$$PATH"; export PATH; endif TEST_EXTENSIONS = .sh