3proxy: use f-strings (#40429)
This commit is contained in:
parent
639ef9e24a
commit
7dbc712fba
@ -24,9 +24,7 @@ class _3proxy(MakefilePackage):
|
|||||||
depends_on("m4", type="build")
|
depends_on("m4", type="build")
|
||||||
|
|
||||||
def build(self, spec, prefix):
|
def build(self, spec, prefix):
|
||||||
make("-f", "Makefile.{0}".format(platform.system()))
|
make("-f", f"Makefile.{platform.system()}")
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
make(
|
make("-f", f"Makefile.{platform.system()}", f"prefix={prefix}", "install")
|
||||||
"-f", "Makefile.{0}".format(platform.system()), "prefix={0}".format(prefix), "install"
|
|
||||||
)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user