Your message dated Mon, 4 Jul 2022 22:15:40 +0200 with message-id <72ce3457-0b81-f3aa-25e4-47a466b38...@debian.org> and subject line Re: Bug#934946 marked as pending in irqbalance has caused the Debian Bug report #934946, regarding irqbalance: cleanup debian/rules for downstream distros to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 934946: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934946 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
--- Begin Message ---Package: irqbalance Version: 1.5.0-4 Severity: wishlist Tags: patch From 20847346b88d621a2c4e86c07ed929ce0496b460 Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov <kact...@debian.org> Date: Fri, 16 Aug 2019 10:08:08 +0000 Subject: [PATCH] Move code to link with libsystemd into separate file This change makes `debian/rules' simplier and cleaner, and makes live of downstream distributions easier. --- debian/config/systemd.mk | 3 +++ debian/rules | 7 ++----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 debian/config/systemd.mk diff --git a/debian/config/systemd.mk b/debian/config/systemd.mk new file mode 100644 index 0000000..d291743 --- /dev/null +++ b/debian/config/systemd.mk @@ -0,0 +1,3 @@ +ifeq (linux,$(DEB_HOST_ARCH_OS)) + confflags += --with-systemd +endif diff --git a/debian/rules b/debian/rules index 37a1513..d5c3a2a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,6 @@ #!/usr/bin/make -f # -*- makefile -*- +include debian/config/systemd.mk export DEB_BUILD_MAINT_OPTIONS = hardening=+all @@ -11,11 +12,7 @@ TMP = $(CURDIR)/debian/$(PACKAGE) dh $@ --with autoreconf,runit override_dh_auto_configure: -ifeq (linux,$(DEB_HOST_ARCH_OS)) - dh_auto_configure -- --with-systemd -else - dh_auto_configure -endif + dh_auto_configure -- $(confflags) override_dh_install: dh_install -- Note, that I send and fetch email in batch, once in a few days. Please, mention in body of your reply when you add or remove recepients.
pgp1hrRsrYyNM.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---Version: 1.6.0-2
--- End Message ---