From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3223015827B for ; Tue, 02 Sep 2025 22:16:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1D3B933BE12 for ; Tue, 02 Sep 2025 22:16:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id AB778110586; Tue, 02 Sep 2025 22:15:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9D89E110584 for ; Tue, 02 Sep 2025 22:15:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B104340DB7 for ; Tue, 02 Sep 2025 22:15:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5137E34FA for ; Tue, 02 Sep 2025 22:15:19 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1756850861.c987ac860b951c79e68aa2be22fb5607979f5b77.perfinion@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: / X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: Rules.modular Rules.monolithic X-VCS-Directories: / X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: c987ac860b951c79e68aa2be22fb5607979f5b77 X-VCS-Branch: master Date: Tue, 02 Sep 2025 22:15:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 182c6257-9d75-43c2-a64a-aa1e4f6f652a X-Archives-Hash: 3844fc1c6265a74882663364f1cc689a commit: c987ac860b951c79e68aa2be22fb5607979f5b77 Author: Christian Göttsche googlemail com> AuthorDate: Sun Nov 10 14:19:18 2024 +0000 Commit: Jason Zaman gentoo org> CommitDate: Tue Sep 2 22:07:41 2025 +0000 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=c987ac86 build: drop obsolete setfiles option The option -q has no effect anymore, see https://github.com/SELinuxProject/selinux/blob/3.7/policycoreutils/setfiles/setfiles.c#L312-L316 Signed-off-by: Christian Göttsche googlemail.com> Signed-off-by: Jason Zaman gentoo.org> Rules.modular | 2 +- Rules.monolithic | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Rules.modular b/Rules.modular index c705541ec..f7f68c611 100644 --- a/Rules.modular +++ b/Rules.modular @@ -225,7 +225,7 @@ validate: $(base_pkg) $(mod_pkgs) $(tmpdir)/all_mods.fc $(builtappfiles) $(verbose) $(SEMOD_LNK) -o $(tmpdir)/test.lnk $(base_pkg) $(mod_pkgs) $(verbose) $(SEMOD_EXP) $(tmpdir)/test.lnk $(tmpdir)/policy.bin @echo "Validating $(NAME) file contexts." - $(verbose) $(SETFILES) -q -c $(tmpdir)/policy.bin $(tmpdir)/all_mods.fc + $(verbose) $(SETFILES) -c $(tmpdir)/policy.bin $(tmpdir)/all_mods.fc @echo "Validating $(NAME) appconfig." $(verbose) $(validateappconfig) $(builtappconf) $(tmpdir)/policy.bin @echo "Success." diff --git a/Rules.monolithic b/Rules.monolithic index 2cbee5a17..d82166a7b 100644 --- a/Rules.monolithic +++ b/Rules.monolithic @@ -228,7 +228,7 @@ $(homedir_template): $(fc) # $(fcpath): $(fc) $(loadpath) $(userpath)/system.users @echo "Validating $(NAME) file_contexts." - $(verbose) $(SETFILES) -q -c $(loadpath) $(fc) + $(verbose) $(SETFILES) -c $(loadpath) $(fc) @echo "Installing file_contexts." @$(INSTALL) -d -m 0755 $(@D) $(verbose) $(INSTALL) -m 0644 $(fc) $(fcpath) @@ -247,7 +247,7 @@ $(fcpath): $(fc) $(loadpath) $(userpath)/system.users # validate: $(fc) $(polver) $(builtappfiles) @echo "Validating $(NAME) file_contexts." - $(verbose) $(SETFILES) -q -c $(polver) $(fc) + $(verbose) $(SETFILES) -c $(polver) $(fc) @echo "Validating $(NAME) appconfig." $(verbose) $(validateappconfig) $(builtappconf) $(polver) @echo "Success."