libmypaint: change extend to append (#36957)
* libmypaint: change extend to append For same reason as #36939, `extend` takes a list as argument, while `append` takes list entry. Here `append` should be used. * libmypaint: depends_on intltool
This commit is contained in:
parent
14075f9f4c
commit
77830d92bd
1 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@ class Libmypaint(AutotoolsPackage):
|
|||
variant("gegl", default=False, description="Enable GEGL based code in build")
|
||||
variant("introspection", default=True, description="Enable introspection for this build")
|
||||
|
||||
depends_on("intltool")
|
||||
depends_on("json-c")
|
||||
depends_on("perl@5.8.1:")
|
||||
depends_on("perl-xml-parser")
|
||||
|
@ -37,7 +38,7 @@ def configure_args(self):
|
|||
args = []
|
||||
|
||||
if "+gegl" in self.spec:
|
||||
args.extend("--enable-gegl=yes")
|
||||
args.append("--enable-gegl=yes")
|
||||
|
||||
if "+introspection" in self.spec:
|
||||
args.extend(
|
||||
|
|
Loading…
Reference in a new issue