diff options
author | jadoro <jadoro@users.noreply.github.com> | 2017-04-26 14:53:58 +0200 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2017-04-26 07:53:58 -0500 |
commit | eba21b86bdcd97fc19c37a8250c497cbd78a538c (patch) | |
tree | e6dfcfa0b7e42ccc1bda41bf9e8581f7a3107f38 | |
parent | e6efb1aa21ffa89d695cdfe69bf0f6c3238f7e1f (diff) | |
download | spack-eba21b86bdcd97fc19c37a8250c497cbd78a538c.tar.gz spack-eba21b86bdcd97fc19c37a8250c497cbd78a538c.tar.bz2 spack-eba21b86bdcd97fc19c37a8250c497cbd78a538c.tar.xz spack-eba21b86bdcd97fc19c37a8250c497cbd78a538c.zip |
Add ncurses as zsh dependency (#3991)
zsh build will fail with
configure: error: "No terminal handling library was found on your system."
if ncurses is not found.
-rw-r--r-- | var/spack/repos/builtin/packages/zsh/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/zsh/package.py b/var/spack/repos/builtin/packages/zsh/package.py index 7b9c485966..5c73b224c7 100644 --- a/var/spack/repos/builtin/packages/zsh/package.py +++ b/var/spack/repos/builtin/packages/zsh/package.py @@ -37,3 +37,4 @@ class Zsh(AutotoolsPackage): version('5.1.1', checksum='8ba28a9ef82e40c3a271602f18343b2f') depends_on("pcre") + depends_on("ncurses") |