diff options
author | Tom Payerle <payerle@umd.edu> | 2020-05-27 10:34:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 16:34:15 +0200 |
commit | 6ddc077e084adecdaf846a50124d63a80d1bd362 (patch) | |
tree | 875be9f3c66135f2b7608cfdd6c9280271e92e7e | |
parent | e73c39a5db1771cc4ff66c9c367a4c0be37a400a (diff) | |
download | spack-6ddc077e084adecdaf846a50124d63a80d1bd362.tar.gz spack-6ddc077e084adecdaf846a50124d63a80d1bd362.tar.bz2 spack-6ddc077e084adecdaf846a50124d63a80d1bd362.tar.xz spack-6ddc077e084adecdaf846a50124d63a80d1bd362.zip |
libxv: videoproto is a build and link dependency (#16821)
fixes #16820
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/libxv/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libxv/package.py b/var/spack/repos/builtin/packages/libxv/package.py index fdb3b6cf7f..fc948f63f1 100644 --- a/var/spack/repos/builtin/packages/libxv/package.py +++ b/var/spack/repos/builtin/packages/libxv/package.py @@ -19,6 +19,6 @@ class Libxv(AutotoolsPackage, XorgPackage): depends_on('libxext') depends_on('xextproto', type='build') - depends_on('videoproto', type='build') + depends_on('videoproto') depends_on('pkgconfig', type='build') depends_on('util-macros', type='build') |