diff mbox series

[v2,1/2] toplevel.mk: add target feeds in 'make distclean'

Message ID mailman.117547.1727195439.1280.openwrt-devel@lists.openwrt.org
State New
Headers show
Series Fix the installation of linux kernel module packages from a feed | expand

Commit Message

Thomas Richard Sept. 24, 2024, 4:27 p.m. UTC
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 <thomas.richard@bootlin.com>
---
 include/toplevel.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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)),)