lz4: fixup incorrect builder method signature (#36812)
This commit is contained in:
parent
8668635f1f
commit
7801577cd5
@ -82,7 +82,7 @@ def cmake_args(self):
|
|||||||
|
|
||||||
|
|
||||||
class MakefileBuilder(MakefileBuilder):
|
class MakefileBuilder(MakefileBuilder):
|
||||||
def build(self, spec, prefix):
|
def build(self, pkg, spec, prefix):
|
||||||
par = True
|
par = True
|
||||||
if spec.compiler.name == "nvhpc":
|
if spec.compiler.name == "nvhpc":
|
||||||
# relocation error when building shared and dynamic libs in
|
# relocation error when building shared and dynamic libs in
|
||||||
@ -94,7 +94,7 @@ def build(self, spec, prefix):
|
|||||||
else:
|
else:
|
||||||
make(parallel=par)
|
make(parallel=par)
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, pkg, spec, prefix):
|
||||||
make(
|
make(
|
||||||
"install",
|
"install",
|
||||||
"PREFIX={0}".format(prefix),
|
"PREFIX={0}".format(prefix),
|
||||||
|
Loading…
Reference in New Issue
Block a user