Message ID | mailman.115093.1726741692.1280.openwrt-devel@lists.openwrt.org |
---|---|
State | Accepted |
Delegated to: | Hauke Mehrtens |
Headers | show |
Series | Fix the installation of linux kernel module packages from a feed | expand |
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)),)
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(-)