From patchwork Thu Sep 19 10:27:27 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Richard X-Patchwork-Id: 1987335 X-Patchwork-Delegate: hauke@hauke-m.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=bombadil.20210309 header.b=Bwu2dYZG; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:3::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=patchwork.ozlabs.org) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4X8Wwh5dBWz1y1m for ; Thu, 19 Sep 2024 20:29:40 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type:List-Help: Reply-To:List-Archive:List-Unsubscribe:List-Subscribe:From:List-Post:List-Id: Message-ID:MIME-Version:References:In-Reply-To:Date:Subject:To:Cc: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=ZZKFVJdt5bhFnDzst5UTVLaM80wPNiTJrJVE9B+nWZQ=; b=Bwu2dYZGTsTVmPxfJITiRjaoii mnUEWWexagmegevhsLwilCAcNvu2059Ma8QF1ftdTpqEnj2xFo+RbojdN1OM+yl431ezXKxFQwgcN 84GWJ3WRUGiHNz8+26yGB2E7O9yEs4nxo+MTi/VqDA+ZdQNzOgMcXMGsTrEU1vw4SOb5/cY4x66FM uFofnysyNexzXCAPQ7feF8V3qtBCUh3dPbMqSikVlKO7hX9PojGZJINh/P/6DszPmy5E9pn2jMx+r EbLk8VMNPfT69lhnLV21Rh5iola/a6kfT8eg6da57CTVXqQ1wgqsdLJr7gF8MPYV1kW+o49OrJePx lImAUjoA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1srEOT-0000000A3Fz-1TM6; Thu, 19 Sep 2024 10:28:13 +0000 To: openwrt-devel@lists.openwrt.org Subject: [PATCH 1/2] toplevel.mk: add target feeds in 'make distclean' Date: Thu, 19 Sep 2024 12:27:27 +0200 In-Reply-To: <20240919102728.1990166-1-thomas.richard@bootlin.com> References: <20240919102728.1990166-1-thomas.richard@bootlin.com> MIME-Version: 1.0 Message-ID: List-Id: OpenWrt Development List List-Post: X-Patchwork-Original-From: Thomas Richard via openwrt-devel From: Thomas Richard Precedence: list X-Mailman-Version: 2.1.34 X-BeenThere: openwrt-devel@lists.openwrt.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: Thomas Richard List-Help: Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software. When 'make distclean' is called, remove the target feeds. Otherwise the directory target/linux/feeds/ (with broken symlinks) still exists after a distclean. Signed-off-by: Thomas Richard --- include/toplevel.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/toplevel.mk b/include/toplevel.mk index 54cd8e3a90..e5f5e0fecd 100644 --- a/include/toplevel.mk +++ b/include/toplevel.mk @@ -276,7 +276,7 @@ help: cat README.md distclean: - rm -rf bin build_dir .ccache .config* dl feeds key-build* logs package/feeds staging_dir tmp + rm -rf bin build_dir .ccache .config* dl feeds key-build* logs package/feeds target/linux/feeds staging_dir tmp @$(_SINGLE)$(SUBMAKE) -C scripts/config clean ifeq ($(findstring v,$(DEBUG)),)