From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D21A81387B1 for ; Sun, 19 Jan 2014 19:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36399E0CFE; Sun, 19 Jan 2014 19:01:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 915BAE0CFF for ; Sun, 19 Jan 2014 19:01:41 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 666D633F998 for ; Sun, 19 Jan 2014 19:01:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 17FCC1872E for ; Sun, 19 Jan 2014 19:01:39 +0000 (UTC) From: "Sven Vermeulen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Vermeulen" Message-ID: <1390157786.a7ae2e69783f6d628b525bd0deb118cc477dc35f.swift@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: / X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: Makefile Rules.modular Rules.monolithic X-VCS-Directories: / X-VCS-Committer: swift X-VCS-Committer-Name: Sven Vermeulen X-VCS-Revision: a7ae2e69783f6d628b525bd0deb118cc477dc35f X-VCS-Branch: master Date: Sun, 19 Jan 2014 19:01:39 +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-Archives-Salt: ffef3a9b-a5de-4844-83da-54f487544186 X-Archives-Hash: 07b71fa01bee03f22ccf5b2062546d52 commit: a7ae2e69783f6d628b525bd0deb118cc477dc35f Author: Chris PeBenito tresys com> AuthorDate: Thu Jan 16 16:25:42 2014 +0000 Commit: Sven Vermeulen gentoo org> CommitDate: Sun Jan 19 18:56:26 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=a7ae2e69 Make the QUIET build option apply to clean and bare targets. --- Makefile | 28 ++++++++++++++-------------- Rules.modular | 10 +++++----- Rules.monolithic | 14 +++++++------- 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Makefile b/Makefile index d46865a..c1c6b2e 100644 --- a/Makefile +++ b/Makefile @@ -611,27 +611,27 @@ resetlabels: # Clean everything # bare: clean - rm -f $(polxml) - rm -f $(layerxml) - rm -f $(modxml) - rm -f $(tunxml) - rm -f $(boolxml) - rm -f $(mod_conf) - rm -f $(booleans) - rm -fR $(htmldir) - rm -f $(tags) + $(verbose) rm -f $(polxml) + $(verbose) rm -f $(layerxml) + $(verbose) rm -f $(modxml) + $(verbose) rm -f $(tunxml) + $(verbose) rm -f $(boolxml) + $(verbose) rm -f $(mod_conf) + $(verbose) rm -f $(booleans) + $(verbose) rm -fR $(htmldir) + $(verbose) rm -f $(tags) # don't remove these files if we're given a local root ifndef LOCAL_ROOT - rm -f $(fcsort) - rm -f $(support)/*.pyc + $(verbose) rm -f $(fcsort) + $(verbose) rm -f $(support)/*.pyc ifneq ($(generated_te),) - rm -f $(generated_te) + $(verbose) rm -f $(generated_te) endif ifneq ($(generated_if),) - rm -f $(generated_if) + $(verbose) rm -f $(generated_if) endif ifneq ($(generated_fc),) - rm -f $(generated_fc) + $(verbose) rm -f $(generated_fc) endif endif diff --git a/Rules.modular b/Rules.modular index 313d837..58e94da 100644 --- a/Rules.modular +++ b/Rules.modular @@ -208,10 +208,10 @@ validate: $(base_pkg) $(mod_pkgs) # Clean the sources # clean: - rm -f $(base_conf) - rm -f $(base_fc) - rm -f $(builddir)*.pp - rm -f $(net_contexts) - rm -fR $(tmpdir) + $(verbose) rm -f $(base_conf) + $(verbose) rm -f $(base_fc) + $(verbose) rm -f $(builddir)*.pp + $(verbose) rm -f $(net_contexts) + $(verbose) rm -fR $(tmpdir) .PHONY: default all policy base modules install load clean validate diff --git a/Rules.monolithic b/Rules.monolithic index 808a539..7e77c03 100644 --- a/Rules.monolithic +++ b/Rules.monolithic @@ -245,12 +245,12 @@ $(installdir)/seusers: $(seusers) # Clean the sources # clean: - rm -f $(policy_conf) - rm -f $(polver) - rm -f $(fc) - rm -f $(homedir_template) - rm -f $(net_contexts) - rm -f *.res - rm -fR $(tmpdir) + $(verbose) rm -f $(policy_conf) + $(verbose) rm -f $(polver) + $(verbose) rm -f $(fc) + $(verbose) rm -f $(homedir_template) + $(verbose) rm -f $(net_contexts) + $(verbose) rm -f *.res + $(verbose) rm -fR $(tmpdir) .PHONY: default policy install load reload enableaudit checklabels restorelabels relabel check longcheck clean