diff options
author | Filip Sedlák <sedlak@flih.cz> | 2021-07-20 09:44:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 09:44:32 +0200 |
commit | 330507f329c4d79a08fd5e0b4d4e9f3b20ce37c9 (patch) | |
tree | 922b2c5b4818c6ee13c97a0bb48afd04b1d73f5d | |
parent | 8080a5e5b25e69e0631de1b3205dbc00b3a56bb4 (diff) | |
download | spack-330507f329c4d79a08fd5e0b4d4e9f3b20ce37c9.tar.gz spack-330507f329c4d79a08fd5e0b4d4e9f3b20ce37c9.tar.bz2 spack-330507f329c4d79a08fd5e0b4d4e9f3b20ce37c9.tar.xz spack-330507f329c4d79a08fd5e0b4d4e9f3b20ce37c9.zip |
ncbi-rmblastn: add build dependency on cpio (#24963)
Although `cpio` is present in many environments, it may not be always
available.
The failure to build this package can be reproduced in a fresh Docker
image `debian:10`.
-rw-r--r-- | var/spack/repos/builtin/packages/ncbi-rmblastn/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ncbi-rmblastn/package.py b/var/spack/repos/builtin/packages/ncbi-rmblastn/package.py index e7ef8bf897..95f3a14b14 100644 --- a/var/spack/repos/builtin/packages/ncbi-rmblastn/package.py +++ b/var/spack/repos/builtin/packages/ncbi-rmblastn/package.py @@ -34,6 +34,7 @@ class NcbiRmblastn(AutotoolsPackage): archive_sha256='e746ee480ade608052306fd21f015c8a323f27029f65399275216f9a4c882d59', when='@2.9.0' ) + depends_on('cpio', type='build') configure_directory = 'c++' |