perl: add missing gmake dependency (#41210)

This commit is contained in:
Michael Kuhn 2023-11-22 11:17:47 +01:00 committed by GitHub
parent 6ac23545ec
commit efa316aafa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,6 +119,7 @@ class Perl(Package): # Perl doesn't use Autotools, it should subclass Package
extendable = True
if sys.platform != "win32":
depends_on("gmake", type="build")
depends_on("gdbm@:1.23")
# Bind us below gdbm-1.20 due to API change: https://github.com/Perl/perl5/issues/18915
depends_on("gdbm@:1.19", when="@:5.35")