Control: severity -1 important Please see the attached patch for what lintian-brush 0.165 does when run against gnome-control-center. This breaks gnome-control-center's build. This feels to me like an RC kind of bug that is perhaps mitigated because nothing forces someone to run lintian-brush and hopefully the person using lintian-brush will check the git commits to see what exactly lintian-brush has done.
Thank you, Jeremy Bícha
From: =?UTF-8?q?Jeremy=20B=C3=ADcha?= <[email protected]> Date: Tue, 27 Jan 2026 17:04:51 -0500 Subject: [PATCH] Add missing debian/rules targets build-indep, build-arch. Changes-By: lintian-brush Fixes: lintian: debian-rules-missing-recommended-target See-also: https://lintian.debian.org/tags/debian-rules-missing-recommended-target.html Fixes: lintian: debian-rules-missing-recommended-target See-also: https://lintian.debian.org/tags/debian-rules-missing-recommended-target.html --- debian/rules | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/debian/rules b/debian/rules index b57186c39f..9aef662dfc 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f export DEB_BUILD_MAINT_OPTIONS = hardening=+all -export DEB_CPPFLAGS_MAINT_APPEND = -DSSHD_SERVICE=\"ssh.service\" +export DEB_CPPFLAGS_MAINT_APPEND = -DSSHD_SERVICE=\"ssh.service" export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs ifeq ($(shell dpkg-vendor --is Ubuntu && echo yes),yes) @@ -16,14 +16,17 @@ endif dh $@ override_dh_auto_configure: - dh_auto_configure -- \ - -Dlocation-services=enabled \ - -Dprivileged_group=sudo \ - -Ddocumentation=true \ - -Ddistributor_logo=$(DISTRIBUTOR_LOGO) \ - -Ddark_mode_distributor_logo=$(DISTRIBUTOR_LOGO_DARK) \ + dh_auto_configure -- + -Dlocation-services=enabled + -Dprivileged_group=sudo + -Ddocumentation=true + -Ddistributor_logo=$(DISTRIBUTOR_LOGO) + -Ddark_mode_distributor_logo=$(DISTRIBUTOR_LOGO_DARK) -Dmalcontent=$(if $(filter linux,$(DEB_HOST_ARCH_OS)),true,false) # Ubuntu-specific override_dh_translations: dh_translations --domain=gnome-control-center-2.0 +build-indep: build + +build-arch: build

