diff options
author | snehring <7978778+snehring@users.noreply.github.com> | 2024-07-17 11:42:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 09:42:20 -0700 |
commit | df5bac3e6c14701003eb9f864f7b6d8150ebf305 (patch) | |
tree | 24eb06db61d8096271504669883522f24878bb5f | |
parent | 7b9f8abce5cee74546a6f588f88c6f353170d52b (diff) | |
download | spack-df5bac3e6c14701003eb9f864f7b6d8150ebf305.tar.gz spack-df5bac3e6c14701003eb9f864f7b6d8150ebf305.tar.bz2 spack-df5bac3e6c14701003eb9f864f7b6d8150ebf305.tar.xz spack-df5bac3e6c14701003eb9f864f7b6d8150ebf305.zip |
giflib: remove convert call in doc generation (#45276)
Signed-off-by: Shane Nehring <snehring@iastate.edu>
-rw-r--r-- | var/spack/repos/builtin/packages/giflib/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/giflib/package.py b/var/spack/repos/builtin/packages/giflib/package.py index 644b27d98b..f794c16519 100644 --- a/var/spack/repos/builtin/packages/giflib/package.py +++ b/var/spack/repos/builtin/packages/giflib/package.py @@ -75,3 +75,6 @@ class Giflib(MakefilePackage, SourceforgePackage): if spec.satisfies("@:5.2.0"): configure = Executable("./configure") configure("--prefix={0}".format(prefix)) + # remove call to convert in doc makefile + with working_dir("doc"): + filter_file("^.*convert.*-resize.*$", "", "Makefile") |