diff options
author | Modestas Vainius <modestas@vainius.eu> | 2009-03-10 10:32:00 +0200 |
---|---|---|
committer | Modestas Vainius <modestas@vainius.eu> | 2009-03-10 10:33:31 +0200 |
commit | 83ccc0b93d216646b392124af11baa6d24709ca2 (patch) | |
tree | 44d97bbc5aa369dd442bff4a4b0b0cae34c10b97 | |
parent | b1f57ac97e8223f666683c7d498635540c2b7ed1 (diff) | |
download | pkg-kde-tools-83ccc0b93d216646b392124af11baa6d24709ca2.tar.gz |
Get rid of custom bug file processing.
Remove this from qt-kde-team/1/debian-qt-kde.mk.
This is handled by dh_bugfiles now.
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | qt-kde-team/1/debian-qt-kde.mk | 13 |
2 files changed, 4 insertions, 13 deletions
diff --git a/debian/changelog b/debian/changelog index 4b3c106..742e4e6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,10 @@ pkg-kde-tools (0.4.1~pre1) UNRELEASED; urgency=low * Add Vcs fields to debian/control (Git). + * Get rid of custom bug file processing in qt-kde-team/1/debian-qt-kde.mk. + This is handled by dh_bugfiles now. - -- Modestas Vainius <modestas@vainius.eu> Tue, 10 Mar 2009 10:27:11 +0200 + -- Modestas Vainius <modestas@vainius.eu> Tue, 10 Mar 2009 10:29:08 +0200 pkg-kde-tools (0.4.0.1) unstable; urgency=low diff --git a/qt-kde-team/1/debian-qt-kde.mk b/qt-kde-team/1/debian-qt-kde.mk index e774bdc..bffa74b 100644 --- a/qt-kde-team/1/debian-qt-kde.mk +++ b/qt-kde-team/1/debian-qt-kde.mk @@ -59,18 +59,7 @@ clean:: $(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi - if test -e debian/$(cdbs_curpkg).presubj; then \ - install -p -D -m644 debian/$(cdbs_curpkg).presubj \ - debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ - fi - if test -e debian/$(cdbs_curpkg).bugscript; then \ - install -p -D -m755 debian/$(cdbs_curpkg).bugscript \ - debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/script; \ - fi - if test -e debian/$(cdbs_curpkg).bugcontrol; then \ - install -p -D -m644 debian/$(cdbs_curpkg).bugcontrol \ - debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/control; \ - fi + dh_bugfiles -p$(cdbs_curpkg) binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: set -e; \ |