diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index c7f80df..584c47f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -28,12 +28,12 @@ screen (4.1.0~20101110git066b098) unstable; urgency=low - 10norootpassword - 14size_matters - 26source_encoding - * Use upstream supplied autogen.ch - - Remove configure and config.h.in in clean target [ Axel Beckert ] * Add myself as Uploader. * Remove Adam Lazur from Uploaders on his request. + * Use dh_autoreconf + - Build-Depend on dh-autoreconf -- Axel Beckert <abe@debian.org> Tue, 04 Oct 2011 23:30:57 +0200 diff --git a/debian/control b/debian/control index fc1c2ce..27c688f 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Jan Christoph Nordholz <hesso@pool.math.tu-berlin.de> Uploaders: Axel Beckert <abe@debian.org> Standards-Version: 3.8.2 -Build-Depends: libncursesw5-dev, texinfo, libpam0g-dev, debhelper (>> 7), dpatch +Build-Depends: libncursesw5-dev, texinfo, libpam0g-dev, debhelper (>> 7), dpatch, dh-autoreconf Homepage: http://savannah.gnu.org/projects/screen Package: screen diff --git a/debian/rules b/debian/rules index cff8fc4..72c958a 100755 --- a/debian/rules +++ b/debian/rules @@ -27,13 +27,13 @@ clean: unpatch test ! -s doc/Makefile || $(MAKE) -C doc realclean test ! -s Makefile || ! grep -q clean Makefile || $(MAKE) realclean rm -f config.log config.status Makefile - rm -f configure config.h.in + dh_autoreconf_clean dh_clean configure: configure-stamp configure-stamp: patch-stamp dh_testdir - ./autogen.sh + dh_autoreconf ./configure --prefix=/usr \ --infodir='$$(prefix)/share/info' \ --mandir='$$(prefix)/share/man' \ |