From ecbd78bf981847dfed79c40d33f0330009687142 Mon Sep 17 00:00:00 2001 From: Dmitry Volyntsev Date: Mon, 12 Feb 2018 15:15:53 +0300 Subject: [PATCH] Fixed PATH shell variable for expect tests. To avoid interference with the already installed njs binary. --- nxt/auto/expect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxt/auto/expect b/nxt/auto/expect index 12652cd9..8ea8eb9b 100644 --- a/nxt/auto/expect +++ b/nxt/auto/expect @@ -21,7 +21,7 @@ if [ $nxt_found = yes -a $NXT_HAVE_LIBEDIT = YES ]; then cat << END >> $NXT_MAKEFILE_CONF njs_expect_test: njs njs/test/njs_expect_test.exp - PATH=\$(PATH):\$(NXT_BUILDDIR) expect -f njs/test/njs_expect_test.exp + PATH=\$(NXT_BUILDDIR):\$(PATH) expect -f njs/test/njs_expect_test.exp END else -- 2.47.3