diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-06-29 21:18:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 15:18:51 +0200 |
commit | 7161b333645f4353a1317801e0e3cffcef3b6863 (patch) | |
tree | 209e987ef9177e3237b644330e9ef407685c3d42 | |
parent | 01357d49255a8fb74feb0dcef79ec3d69a09f15f (diff) | |
download | spack-7161b333645f4353a1317801e0e3cffcef3b6863.tar.gz spack-7161b333645f4353a1317801e0e3cffcef3b6863.tar.bz2 spack-7161b333645f4353a1317801e0e3cffcef3b6863.tar.xz spack-7161b333645f4353a1317801e0e3cffcef3b6863.zip |
nfs-utils: fix compile error on debian (#17292)
use pkgconfig to detect libtirpc
-rw-r--r-- | var/spack/repos/builtin/packages/nfs-utils/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/nfs-utils/package.py b/var/spack/repos/builtin/packages/nfs-utils/package.py index be46c57030..c8d105a882 100644 --- a/var/spack/repos/builtin/packages/nfs-utils/package.py +++ b/var/spack/repos/builtin/packages/nfs-utils/package.py @@ -18,6 +18,7 @@ class NfsUtils(AutotoolsPackage): version('2.4.1', sha256='c0dda96318af554881f4eb1590bfe91f1aba2fba59ed2ac3ba099f80fdf838e9') version('2.3.4', sha256='36e70b0a583751ead0034ebe5d8826caf2dcc7ee7c0beefe94d6ee5a3b0b2484') + depends_on('pkgconfig', type='build') depends_on('libtirpc') depends_on('libevent') depends_on('libdmx') |