lz4: fixup incorrect builder method signature (#36812)

This commit is contained in:
John W. Parent 2023-04-13 06:33:55 -04:00 committed by GitHub
parent 8668635f1f
commit 7801577cd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,7 @@ def cmake_args(self):
class MakefileBuilder(MakefileBuilder):
def build(self, spec, prefix):
def build(self, pkg, spec, prefix):
par = True
if spec.compiler.name == "nvhpc":
# relocation error when building shared and dynamic libs in
@ -94,7 +94,7 @@ def build(self, spec, prefix):
else:
make(parallel=par)
def install(self, spec, prefix):
def install(self, pkg, spec, prefix):
make(
"install",
"PREFIX={0}".format(prefix),