diff options
author | Rosen Penev <rosenp@gmail.com> | 2022-09-28 01:23:56 -0700 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-10-20 00:33:22 +0200 |
commit | a63805b25f99e609d575ee920baae269fb58794c (patch) | |
tree | 3d7090484571e2b300efdd658033378c250a485e /tools/coreutils | |
parent | f2ae4e2f8cf698f6fc6ae802dae86f50916f4286 (diff) | |
download | openwrt-a63805b25f99e609d575ee920baae269fb58794c.tar.gz openwrt-a63805b25f99e609d575ee920baae269fb58794c.tar.bz2 openwrt-a63805b25f99e609d575ee920baae269fb58794c.zip |
tools: add Host/Uninstall where possible
This cleans staging_dir when calling tool/x/clean.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'tools/coreutils')
-rw-r--r-- | tools/coreutils/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/coreutils/Makefile b/tools/coreutils/Makefile index 87c9102fa6..c64210c5a7 100644 --- a/tools/coreutils/Makefile +++ b/tools/coreutils/Makefile @@ -35,4 +35,9 @@ define Host/Install ln -sf ginstall $(1)/bin/install endef +define Host/Uninstall + rm -f $(STAGING_DIR_HOST)/bin/install + -$(call Host/Compile/Default,uninstall) +endef + $(eval $(call HostBuild)) |