From e55a07c9c80572d45090a1d95f355036b656661e Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Wed, 30 Sep 2015 14:50:17 +0200 Subject: [PATCH] Fix make invocation --- regression-tests/runtests | 2 +- regression-tests/start-test-stop | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-tests/runtests b/regression-tests/runtests index 98e291e516..c38e23b6bc 100755 --- a/regression-tests/runtests +++ b/regression-tests/runtests @@ -17,7 +17,7 @@ spectest=$1 for prog in $SDIG $SAXFR $NSEC3DIG; do if `echo $prog | grep -q '../pdns'`; then - ${MAKE} -C ../pdns ${prog##../pdns/} || exit + ${MAKE} -C ../pdns ${prog##*../pdns/} || exit fi done diff --git a/regression-tests/start-test-stop b/regression-tests/start-test-stop index 58386ad4d0..53325893c6 100755 --- a/regression-tests/start-test-stop +++ b/regression-tests/start-test-stop @@ -231,7 +231,7 @@ fi for prog in $SDIG $SAXFR $NSEC3DIG; do if `echo $prog | grep -q '../pdns'`; then - ${MAKE} -C ../pdns ${prog##../pdns/} || exit + ${MAKE} -C ../pdns ${prog##*../pdns/} || exit fi done -- 2.47.2