mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Use proper perl interpreter in xfer system test
This commit is contained in:
parent
807f67b1cd
commit
f0493890cc
1 changed files with 2 additions and 2 deletions
|
|
@ -16,9 +16,9 @@
|
|||
# macOS ships with Net::DNS 0.74 which does not work with
|
||||
# HMAC-SHA256, despite the workarounds in ans.pl
|
||||
|
||||
if perl -MNet::DNS -e 'exit $Net::DNS::VERSION >= 1.0'
|
||||
if ${PERL} -MNet::DNS -e 'exit ($Net::DNS::VERSION >= 1.0)'
|
||||
then
|
||||
version=$(perl -MNet::DNS -e 'print $Net::DNS::VERSION')
|
||||
version=$(${PERL} -MNet::DNS -e 'print $Net::DNS::VERSION')
|
||||
echo_i "perl Net::DNS $version is too old - skipping xfer test"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue