diff options
author | Michael Biebl <biebl@debian.org> | 2010-11-17 07:08:46 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2010-11-17 07:08:46 +0100 |
commit | 94ba8058276013f2bd7f65559351c8fc3ee55f7b (patch) | |
tree | b521bff0c2c3d34a430d2b8c980ce731dff864d9 | |
parent | 84655c445d2bb15260a8885651f71a1c7b9ce743 (diff) | |
download | consolekit-94ba8058276013f2bd7f65559351c8fc3ee55f7b.tar.gz |
Use dh-autoreconf to update the build system
* Use dh-autoreconf to update the build system
- Add Build-Depends on dh-autoreconf.
- Add /usr/share/cdbs/1/rules/autoreconf.mk include in debian/rules.
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index e1a4ced..05b0179 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ consolekit (0.4.3-1) UNRELEASED; urgency=low - d/p/01-fallback_no_vt_waitevent.patch (obsolete) - d/p/80-gnukfreebsd_support_configure.ac.patch (merged upstream) - d/p/debian/patches/99-autoreconf.patch (use dh-autoreconf instead) + * Use dh-autoreconf to update the build system + - Add Build-Depends on dh-autoreconf. + - Add /usr/share/cdbs/1/rules/autoreconf.mk include in debian/rules. -- Michael Biebl <biebl@debian.org> Wed, 17 Nov 2010 06:51:57 +0100 diff --git a/debian/control b/debian/control index 761a0d2..c676064 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,8 @@ Build-Depends: cdbs, xmlto, libpam0g-dev, libpolkit-gobject-1-dev (>= 0.92), - zlib1g-dev + zlib1g-dev, + dh-autoreconf Standards-Version: 3.9.1 Vcs-Git: git://git.debian.org/git/pkg-utopia/consolekit.git Vcs-Browser: http://git.debian.org/?p=pkg-utopia/consolekit.git;a=summary diff --git a/debian/rules b/debian/rules index 49f7fe3..fc508cd 100755 --- a/debian/rules +++ b/debian/rules @@ -4,6 +4,7 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/autoreconf.mk DEB_CONFIGURE_LIBEXECDIR := "\$$(prefix)/lib/ConsoleKit" |