summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/dropwatch/package.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/dropwatch/package.py b/var/spack/repos/builtin/packages/dropwatch/package.py
index 873797d561..d0b69ccacd 100644
--- a/var/spack/repos/builtin/packages/dropwatch/package.py
+++ b/var/spack/repos/builtin/packages/dropwatch/package.py
@@ -20,7 +20,7 @@ class Dropwatch(AutotoolsPackage):
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
- depends_on('m4', type='build')
+ depends_on('pkgconfig', type='build')
depends_on('libnl')
depends_on('libpcap')
depends_on('binutils')
@@ -29,3 +29,7 @@ class Dropwatch(AutotoolsPackage):
def autoreconf(self, spec, prefix):
bash = which('bash')
bash('./autogen.sh')
+
+ def check(self):
+ """`make check` starts a daemon which does not terminate, blocking the builds"""
+ pass