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:
Wouter Deconinck 2023-04-16 20:37:48 -05:00 committed by GitHub
parent 14075f9f4c
commit 77830d92bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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(