diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2014-01-27 23:21:14 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2014-01-27 23:21:14 +0000 |
commit | 5a6588a59625de0583ae082c2120c564f7c7bd7d (patch) | |
tree | 8e0aa9d1129cf4087ff957aef6dac9e6c59332a8 | |
parent | 37356d15ed31b02907ed2317956d5ec6d007a6a1 (diff) | |
download | wavemon-5a6588a59625de0583ae082c2120c564f7c7bd7d.tar.gz |
d/control: Build-Depends on dh-autoreconf rather than autotools-dev
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 6e20147..1752111 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,7 @@ wavemon (0.7.6-1) UNRELEASED; urgency=low * d/patches: Drop 01-Allow-buildflags-to-be-overridden.patch; applied upstream, rename 02-remove-extra-copyright-file.patch as 01-remove-extra-copyright-file.patch + * d/control: Build-Depends on dh-autoreconf rather than autotools-dev -- Jonathan McCrohan <jmccrohan@gmail.com> Tue, 18 Dec 2012 22:37:17 +0000 diff --git a/debian/control b/debian/control index 4bb6d91..e42dd12 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: wavemon Section: net Priority: extra Maintainer: Jonathan McCrohan <jmccrohan@gmail.com> -Build-Depends: autotools-dev, libncurses5-dev, +Build-Depends: dh-autoreconf, libncurses5-dev, debhelper (>= 9), linux-libc-dev Standards-Version: 3.9.5 Homepage: http://www.erg.abdn.ac.uk/ergcms/wavemon/ diff --git a/debian/rules b/debian/rules index dcf6189..dd9063b 100755 --- a/debian/rules +++ b/debian/rules @@ -1,4 +1,4 @@ #!/usr/bin/make -f %: - dh $@ --with autotools_dev + dh $@ --with autoreconf |