tags 805943 + patch
thanks
This package is simple enough that switching to dh would not be too difficult.
That would probably fix the bug automatically.
In the meantime, I attach a trivial patch. This is just the result of
duplicating every dh_* call to binary-indep (except for dh_testroot
and dh_testdir which I consider useless, as dpkg-buildpackage already
takes care of being in the right directory and being root when needed).
Thanks.
--- a/debian/rules
+++ b/debian/rules
@@ -76,30 +76,45 @@ install: build
# Build architecture-independent files here.
binary-indep: build install
-# We have nothing to do by default.
+ dh_installchangelogs -i ChangeLog
+ dh_installdocs -i
+ dh_installexamples -i
+ dh_install -i
+ dh_installmenu -i
+ dh_python2 -i --no-guessing-versions
+ dh_installman -i
+ dh_link -i
+ dh_strip -i
+ dh_compress -i
+ dh_fixperms -i
+ dh_perl -i
+ dh_makeshlibs -i -V
+ dh_installdeb -i
+ dh_shlibdeps -i
+ dh_gencontrol -i
+ dh_md5sums -i
+ dh_builddeb -i
# Build architecture-dependent files here.
binary-arch: build install
- dh_testdir
- dh_testroot
- dh_installchangelogs ChangeLog
- dh_installdocs
- dh_installexamples
- dh_install
- dh_installmenu
- dh_python2 --no-guessing-versions
- dh_installman
- dh_link
- dh_strip
- dh_compress
- dh_fixperms
- dh_perl
- dh_makeshlibs -V
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
+ dh_installchangelogs -a ChangeLog
+ dh_installdocs -a
+ dh_installexamples -a
+ dh_install -a
+ dh_installmenu -a
+ dh_python2 -a --no-guessing-versions
+ dh_installman -a
+ dh_link -a
+ dh_strip -a
+ dh_compress -a
+ dh_fixperms -a
+ dh_perl -a
+ dh_makeshlibs -a -V
+ dh_installdeb -a
+ dh_shlibdeps -a
+ dh_gencontrol -a
+ dh_md5sums -a
+ dh_builddeb -a
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install