Skip to content

Commit

Permalink
Include fix from LTS branches for upgrading perl version
Browse files Browse the repository at this point in the history
Use $PERL instead of just perl so that the custom-installed perl is used for the List::Util qw(pairs) check.

Ticket: ENT-12140
Changelog: none
  • Loading branch information
craigcomstock committed Oct 16, 2024
1 parent 10bebe6 commit a4ae768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/install-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ check_and_install_perl()
"too old"
PERL_OK="no"
fi
if ! perl -e 'use List::Util qw(pairs);'; then
if ! $PERL -e 'use List::Util qw(pairs);'; then
echo "$PERL has List::Util that does not export pairs. Needs to be at least version 1.29 for OpenSSL version 3.3.2."
PERL_OK="no"
fi
Expand Down

0 comments on commit a4ae768

Please sign in to comment.