From b84159a62d32654afc586894eba8e735322e8334 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Mon, 30 Dec 2024 20:41:45 +0000 Subject: [PATCH] d/rules: Inline `binary-one` target into its callers Signed-off-by: Ian Jackson --- debian/rules | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/debian/rules b/debian/rules index 1983214..61aabf0 100755 --- a/debian/rules +++ b/debian/rules @@ -110,21 +110,14 @@ binary-prep: dh_installexamples dh_compress - -binary-one: - dh_lintian -p$p - dh_link -p$p - dh_fixperms -p$p - chmod u+s,o-x debian/chiark-really/usr/sbin/really - dh_installdeb -p$p - dh_gencontrol -p$p - dh_md5sums -p$p - dh_builddeb -p$p - - binary-indep: build binary-prep - set -e; for p in $(packages_indep); do \ - debian/rules binary-one p=$$p; done + dh_lintian -i + dh_link -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i binary-arch: build binary-prep $(checkdir) @@ -143,8 +136,14 @@ binary-arch: build binary-prep a="$$a -d$$d $$f"; \ done; set -x; \ dh_shlibdeps -p chiark-utils-bin -- $$a - set -e; for p in $(packages_arch); \ - do debian/rules binary-one p=$$p; done + dh_lintian -a + dh_link -a + dh_fixperms -a + chmod u+s,o-x debian/chiark-really/usr/sbin/really + dh_installdeb -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a define checkdir test -f cprogs/writebuffer.c -- 2.30.2