diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2023-04-16 20:37:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-16 18:37:48 -0700 |
commit | 77830d92bd0ab91ae5e82be80eae405b54768cf2 (patch) | |
tree | ba3635b71b2fd933f256f5ff9418cd9cc2971c50 | |
parent | 14075f9f4cd82e7af138af0ad822fd9ddb8034fa (diff) | |
download | spack-77830d92bd0ab91ae5e82be80eae405b54768cf2.tar.gz spack-77830d92bd0ab91ae5e82be80eae405b54768cf2.tar.bz2 spack-77830d92bd0ab91ae5e82be80eae405b54768cf2.tar.xz spack-77830d92bd0ab91ae5e82be80eae405b54768cf2.zip |
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
-rw-r--r-- | var/spack/repos/builtin/packages/libmypaint/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libmypaint/package.py b/var/spack/repos/builtin/packages/libmypaint/package.py index 0cac584845..8db1f48890 100644 --- a/var/spack/repos/builtin/packages/libmypaint/package.py +++ b/var/spack/repos/builtin/packages/libmypaint/package.py @@ -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 @@ class Libmypaint(AutotoolsPackage): args = [] if "+gegl" in self.spec: - args.extend("--enable-gegl=yes") + args.append("--enable-gegl=yes") if "+introspection" in self.spec: args.extend( |