From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 262771FF0B2 for ; Mon, 24 Aug 2026 10:57:59 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 6AC3D2164B; Mon, 24 Aug 2026 10:57:22 +0200 (CEST) From: Daniel Kral To: pve-devel@lists.proxmox.com Subject: [PATCH cluster 01/12] buildsys: include pmxcfs tidy target in top-level tidy target Date: Mon, 24 Aug 2026 10:56:00 +0200 Message-ID: <20260824085610.111211-3-d.kral@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260824085610.111211-2-d.kral@proxmox.com> References: <20260824085610.111211-2-d.kral@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1787561806009 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.995 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: LTOSWLMRLC3XOFXFKRIE6FRYIYDHI37G X-Message-ID-Hash: LTOSWLMRLC3XOFXFKRIE6FRYIYDHI37G X-MailFrom: d.kral@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Signed-off-by: Daniel Kral --- Makefile | 1 + src/Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5fa96ab..5228a5b 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ all: $(DEB) $(DBG_DEB) .PHONY: tidy tidy: git ls-files ':*.p[ml]'| xargs -n4 -P0 proxmox-perltidy + $(MAKE) -C src tidy $(BUILDDIR): rm -rf $@ $@.tmp diff --git a/src/Makefile b/src/Makefile index 50dd6aa..7359660 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,6 +10,9 @@ all: install: set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done +.PHONY: tidy +tidy: + $(MAKE) -C pmxcfs tidy .PHONY: check check: -- 2.47.3