summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2017-08-17 14:18:02 +0200
committerAdam J. Stewart <ajstewart426@gmail.com>2017-08-17 07:18:02 -0500
commitd65d1269b925ae5bb8bcfa7cf8acedb28b95cd51 (patch)
treef3d08719d56f431709da62457a322822194f6e61
parent101693d8233b97e6af986534ff3d8a647de0094d (diff)
downloadspack-d65d1269b925ae5bb8bcfa7cf8acedb28b95cd51.tar.gz
spack-d65d1269b925ae5bb8bcfa7cf8acedb28b95cd51.tar.bz2
spack-d65d1269b925ae5bb8bcfa7cf8acedb28b95cd51.tar.xz
spack-d65d1269b925ae5bb8bcfa7cf8acedb28b95cd51.zip
add libiconv dependency to libxslt (#5138)
this is a fix to an installation that failed due to configure for some reason not finding the libiconv shipped with glibc, but still trying to link against it see http://xmlsoft.org/FAQ.html
-rw-r--r--var/spack/repos/builtin/packages/libxslt/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libxslt/package.py b/var/spack/repos/builtin/packages/libxslt/package.py
index 53c0438508..a87ae7ffee 100644
--- a/var/spack/repos/builtin/packages/libxslt/package.py
+++ b/var/spack/repos/builtin/packages/libxslt/package.py
@@ -43,6 +43,7 @@ class Libxslt(AutotoolsPackage):
variant('crypto', default=True,
description='Build libexslt with crypto support')
+ depends_on("libiconv")
depends_on("libxml2")
depends_on("xz")
depends_on("zlib")