Use proper perl interpreter in xfer system test

(cherry picked from commit f0493890cc)
This commit is contained in:
Tom Krizek
2023-09-04 13:49:18 +02:00
parent 76b5c07b8d
commit ee849d2a0c

View File

@@ -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