From da1243fe9d7b56c95c374e12b157f337fddf5ab2 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 19 Nov 2020 14:43:06 +1100 Subject: [PATCH] bin/tests/system/stop.sh was not working It failed to export builddir srcdir resulting in stop.pl failing when these where looked for in the environment. --- bin/tests/system/stop.sh.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/tests/system/stop.sh.in b/bin/tests/system/stop.sh.in index 1d5fb19846..ac3964e63c 100644 --- a/bin/tests/system/stop.sh.in +++ b/bin/tests/system/stop.sh.in @@ -15,4 +15,6 @@ srcdir=@srcdir@ # shellcheck source=conf.sh . "${builddir}/conf.sh" +export builddir srcdir + $PERL "${srcdir}/stop.pl" "$@"