Fix ordering of debhelper calls
Sanitize order of dh_installdeb, dh_shlibdeps and dh_makeshlibs in debian/rules binary-arch (thanks, lintian!).
This commit is contained in:
parent
a9603bc7ac
commit
fa3e8da591
|
@ -12,6 +12,8 @@ x11-xserver-utils (7.3+6) UNRELEASED; urgency=low
|
||||||
* Refresh 01_sessreg_implement_hostname_hashing.diff.
|
* Refresh 01_sessreg_implement_hostname_hashing.diff.
|
||||||
* Bump libxrandr-dev build-dep to 2:1.2.99.3.
|
* Bump libxrandr-dev build-dep to 2:1.2.99.3.
|
||||||
* Drop -1 debian revisions from build-deps to make lintian happy.
|
* Drop -1 debian revisions from build-deps to make lintian happy.
|
||||||
|
* Sanitize order of dh_installdeb, dh_shlibdeps and dh_makeshlibs in
|
||||||
|
debian/rules binary-arch (thanks, lintian!).
|
||||||
|
|
||||||
-- Julien Cristau <jcristau@debian.org> Sun, 03 Aug 2008 01:26:58 +0200
|
-- Julien Cristau <jcristau@debian.org> Sun, 03 Aug 2008 01:26:58 +0200
|
||||||
|
|
||||||
|
|
|
@ -93,9 +93,9 @@ binary-arch: build install
|
||||||
dh_strip
|
dh_strip
|
||||||
dh_compress
|
dh_compress
|
||||||
dh_fixperms
|
dh_fixperms
|
||||||
dh_installdeb
|
|
||||||
dh_shlibdeps
|
|
||||||
dh_makeshlibs
|
dh_makeshlibs
|
||||||
|
dh_shlibdeps
|
||||||
|
dh_installdeb
|
||||||
dh_gencontrol
|
dh_gencontrol
|
||||||
dh_md5sums
|
dh_md5sums
|
||||||
dh_builddeb
|
dh_builddeb
|
||||||
|
|
Loading…
Reference in New Issue