commit 64570593d86fc638bd2c15d2b999c28cfef75695 from: Omar Polo date: Mon Jan 10 11:48:01 2022 UTC prepend builddir/kamid to PATH before running the lisp regress suite I'm not proud of that hack, which is a double hack in fact, but I've already wasted too much time on this. The first hack is the PATH mangling, and the second the $$(cd ... ; pwd) to obtain an *absolute* path: for build in-tree top_builddir is just `.' which isn't really helpful after a cd. commit - 892614d3212744a47629bcdbae0b2fa006f24d86 commit + 64570593d86fc638bd2c15d2b999c28cfef75695 blob - 38101f4394fc9772d3ad8bd5d727af043d08d615 blob + 4f7de32785f19f3aa4b0d33513f217bcd16607fd --- Makefile.am +++ Makefile.am @@ -24,6 +24,7 @@ test: $(top_builddir)/ninepscript/ninepscript -r $(top_srcdir)/regress/root \ $(top_srcdir)/regress/ninepscript/*-suite.9ps @if [ "${HAVE_LISP}" = yes ]; then \ + export PATH="$$(cd $(top_builddir)/kamid/; pwd):$$PATH"; \ cd "$(top_srcdir)"/regress/lisp && \ SUDO="${SUDO}" ./run.sh; \ else \