diff options
| author | Thomas Richard | 2024-09-19 10:27:27 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-10-08 20:50:50 +0000 |
| commit | a544b9252bbda2643704e01c8085cdde2d3f1362 (patch) | |
| tree | 172037b659ea830cf58691f44a727bba1ce6244d | |
| parent | 2760b7c8ece34f637afebe4e1e099f6dbed362b1 (diff) | |
| download | openwrt-a544b9252bbda2643704e01c8085cdde2d3f1362.tar.gz | |
toplevel.mk: add target feeds in 'make distclean'
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>
Link: https://patchwork.ozlabs.org/project/openwrt/patch/mailman.115093.1726741692.1280.openwrt-devel@lists.openwrt.org/
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | include/toplevel.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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)),) |