diff options
author | Simon McVittie <smcv@debian.org> | 2011-06-01 14:30:17 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2011-06-01 14:40:15 +0100 |
commit | dbe142d163a78eafa2abf1d4b0d32ab9c5ff28fc (patch) | |
tree | a33fe0ba7ead98b4d79b5788eb783652a87912dc /debian | |
parent | c43412bd0dc98ba24e9d42d65d0f21b6e9e658b8 (diff) | |
download | dbus-dbe142d163a78eafa2abf1d4b0d32ab9c5ff28fc.tar.gz |
Run autoreconf during build, and allow parallel building
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/control | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 36a7325e..555807e2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ dbus (1.4.8-4) UNRELEASED; urgency=low old systems now, and everyone forgets to update it * Do a second build with tests, verbosity etc. enabled, and install it in /usr/lib/$DEB_HOST_MULTIARCH/dbus-1.0/debug-build (Closes: #498185) + * Run autoconf during build, and allow parallel building -- Simon McVittie <smcv@debian.org> Wed, 01 Jun 2011 14:08:58 +0100 diff --git a/debian/control b/debian/control index f81dd1da..a91b2d5b 100644 --- a/debian/control +++ b/debian/control @@ -9,6 +9,7 @@ Uploaders: Sjoerd Simons <sjoerd@debian.org>, Simon McVittie <smcv@debian.org> Build-Depends: autotools-dev, debhelper (>= 8), + dh-autoreconf, doxygen, dpkg-dev (>= 1.16.0~ubuntu4), libexpat-dev, diff --git a/debian/rules b/debian/rules index 6d454484..7fca39a1 100755 --- a/debian/rules +++ b/debian/rules @@ -5,7 +5,7 @@ # Copyright © 2011 Michael Biebl <biebl@debian.org> %: - dh $@ --builddirectory=build + dh $@ --builddirectory=build --with autoreconf --parallel libdbusN := $(shell sed -rn 's/Package:[[:space:]]*(libdbus-[0-9-]+)[[:space:]]*$$/\1/p' debian/control | head -n 1) |