lz4: fixup incorrect builder method signature (#36812)
This commit is contained in:
parent
8668635f1f
commit
7801577cd5
1 changed files with 2 additions and 2 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue