From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id E63501FF185 for ; Mon, 4 Aug 2025 10:53:04 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id BE0761B991; Mon, 4 Aug 2025 10:54:33 +0200 (CEST) From: Dietmar Maurer To: pve-devel@lists.proxmox.com Date: Mon, 4 Aug 2025 10:54:29 +0200 Message-ID: <20250804085429.2153579-1-dietmar@proxmox.com> X-Mailer: git-send-email 2.47.2 MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.584 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RDNS_NONE 0.793 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Subject: [pve-devel] [PATCH i18n] do not use find with xtr X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" because xtr automatically includes the whole subtree. Signed-off-by: Dietmar Maurer --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 4fa55e9..07658e3 100644 --- a/Makefile +++ b/Makefile @@ -161,7 +161,7 @@ endef # parameter 1 is the name # parameter 2 is the directory define xtrpotupdate - find . -name "*.rs" -path "./$(2)*" | LC_COLLATE=C sort | xargs xtr \ + LC_COLLATE=C xtr "./$(2)" \ --package-name "$(1)" \ --package-version="$(shell cd $(2);git rev-parse HEAD)" \ --msgid-bugs-address="" \ @@ -175,11 +175,11 @@ update_pot: submodule $(call potupdate,pve-manager,pve-manager/www/manager6/) $(call potupdate,proxmox-mailgateway,pmg-gui/js/) $(call potupdate,proxmox-backup,proxmox-backup/www/) - $(call xtrpotupdate,proxmox-datacenter-manager-ui,proxmox-datacenter-manager/ui/src/) - $(call xtrpotupdate,pve-yew-mobile-gui,pve-yew-mobile-gui/src/) - $(call xtrpotupdate,pmg-yew-quarantine-gui,pmg-yew-quarantine-gui/src/) - $(call xtrpotupdate,proxmox-yew-comp,proxmox-yew-comp/src/) - $(call xtrpotupdate,proxmox-yew-widget-toolkit,proxmox-yew-widget-toolkit/src/) + $(call xtrpotupdate,proxmox-datacenter-manager-ui,proxmox-datacenter-manager/ui/src/lib.rs) + $(call xtrpotupdate,pve-yew-mobile-gui,pve-yew-mobile-gui/src/main.rs) + $(call xtrpotupdate,pmg-yew-quarantine-gui,pmg-yew-quarantine-gui/src/main.rs) + $(call xtrpotupdate,proxmox-yew-comp,proxmox-yew-comp/src/lib.rs) + $(call xtrpotupdate,proxmox-yew-widget-toolkit,proxmox-yew-widget-toolkit/src/lib.rs) do_update: $(MAKE) update_pot -- 2.47.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel