From: Pieter Lexis Date: Thu, 23 Jun 2016 15:00:01 +0000 (+0200) Subject: Use absolute paths for RECCONTROL etc. X-Git-Tag: auth-4.0.0-rc1~17^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4034%2Fhead;p=thirdparty%2Fpdns.git Use absolute paths for RECCONTROL etc. Closes #3946 --- diff --git a/regression-tests.recursor/config.sh b/regression-tests.recursor/config.sh index 3207c4d97e..549c7e0f94 100755 --- a/regression-tests.recursor/config.sh +++ b/regression-tests.recursor/config.sh @@ -4,9 +4,9 @@ if [ "${PDNS_DEBUG}" = "YES" ]; then set -x fi -export PDNS=${PDNS:-../../../pdns/pdns_server} -export PDNSRECURSOR=${PDNSRECURSOR:-../../../pdns/recursordist/pdns_recursor} -export RECCONTROL=${RECCONTROL:-../../../pdns/recursordist/rec_control} +export PDNS=${PDNS:-${PWD}/../pdns/pdns_server} +export PDNSRECURSOR=${PDNSRECURSOR:-${PWD}/../pdns/recursordist/pdns_recursor} +export RECCONTROL=${RECCONTROL:-${PWD}/../pdns/recursordist/rec_control} . ./vars