build arch: all package in binary-indep and debhelper cleanup
This commit is contained in:
parent
7b2c9ed304
commit
3a959d78de
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -11,6 +11,9 @@ nagios-plugins (1.4.11-2) UNRELEASED; urgency=low
|
||||||
* include a more explicit copyright notice to copyright to make lintian
|
* include a more explicit copyright notice to copyright to make lintian
|
||||||
happy
|
happy
|
||||||
* include OpenSSL exception from upstream README into copyright
|
* include OpenSSL exception from upstream README into copyright
|
||||||
|
* make use of dh_* -i for binary-indep and dh_* -s for binary-arch
|
||||||
|
(Closes: #468467)
|
||||||
|
* remove some unneeded and commented debhelper scripts in binary-arch
|
||||||
|
|
||||||
-- sean finney <seanius@debian.org> Sat, 26 Jan 2008 15:08:03 +0100
|
-- sean finney <seanius@debian.org> Sat, 26 Jan 2008 15:08:03 +0100
|
||||||
|
|
||||||
|
|
54
debian/rules
vendored
54
debian/rules
vendored
|
@ -160,38 +160,40 @@ install: build
|
||||||
|
|
||||||
# Build architecture-independent files here.
|
# Build architecture-independent files here.
|
||||||
binary-indep: build install
|
binary-indep: build install
|
||||||
# We have nothing to do by default.
|
dh_testdir -i
|
||||||
|
dh_testroot -i
|
||||||
|
dh_installchangelogs -i ChangeLog
|
||||||
|
dh_installdocs -i
|
||||||
|
dh_installexamples -i command.cfg
|
||||||
|
dh_installman -i
|
||||||
|
dh_strip -i
|
||||||
|
dh_compress -i
|
||||||
|
dh_fixperms -i
|
||||||
|
dh_installdeb -i
|
||||||
|
dh_shlibdeps -i
|
||||||
|
dh_gencontrol -i
|
||||||
|
dh_md5sums -i
|
||||||
|
dh_builddeb -i
|
||||||
|
|
||||||
# Build architecture-dependent files here.
|
# Build architecture-dependent files here.
|
||||||
binary-arch: build install
|
binary-arch: build install
|
||||||
dh_testdir
|
dh_testdir -s
|
||||||
dh_testroot
|
dh_testroot -s
|
||||||
dh_installchangelogs ChangeLog
|
dh_installchangelogs -s ChangeLog
|
||||||
dh_installdocs
|
dh_installdocs -s
|
||||||
dh_installexamples command.cfg
|
dh_installexamples -s command.cfg
|
||||||
# dh_install
|
dh_installman -s
|
||||||
# dh_installmenu
|
|
||||||
# dh_installdebconf
|
|
||||||
# dh_installlogrotate
|
|
||||||
# dh_installemacsen
|
|
||||||
# dh_installpam
|
|
||||||
# dh_installmime
|
|
||||||
# dh_installinit
|
|
||||||
# dh_installcron
|
|
||||||
# dh_installinfo
|
|
||||||
dh_installman
|
|
||||||
# dh_link
|
# dh_link
|
||||||
dh_strip
|
dh_strip -s
|
||||||
dh_compress
|
dh_compress -s
|
||||||
dh_fixperms -X utils.pm
|
dh_fixperms -s -X utils.pm
|
||||||
# dh_perl
|
# dh_perl
|
||||||
# dh_python
|
|
||||||
# dh_makeshlibs
|
# dh_makeshlibs
|
||||||
dh_installdeb
|
dh_installdeb -s
|
||||||
dh_shlibdeps
|
dh_shlibdeps -s
|
||||||
dh_gencontrol
|
dh_gencontrol -s
|
||||||
dh_md5sums
|
dh_md5sums -s
|
||||||
dh_builddeb
|
dh_builddeb -s
|
||||||
|
|
||||||
binary: binary-indep binary-arch
|
binary: binary-indep binary-arch
|
||||||
.PHONY: build clean binary-indep binary-arch binary install
|
.PHONY: build clean binary-indep binary-arch binary install
|
||||||
|
|
Loading…
Reference in a new issue