From: Pieter Lexis Date: Wed, 30 Sep 2015 12:50:17 +0000 (+0200) Subject: Fix make invocation X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~29^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e55a07c9c80572d45090a1d95f355036b656661e;p=thirdparty%2Fpdns.git Fix make invocation --- 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