projects
/
openwrt
/
staging
/
pepe2k.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd48ca1
)
tools: e2fsprogs: use standard make uninstall
author
Robert Marko
<
[email protected]
>
Tue, 25 Jun 2024 17:45:12 +0000
(19:45 +0200)
committer
Robert Marko
<
[email protected]
>
Wed, 26 Jun 2024 09:21:04 +0000
(11:21 +0200)
There is no need to manually only remove 2 binaries during cleanup and
leave rest of the e2fsprogs installed stuff untouched, so instead use
make uninstall to do the cleanup.
Link:
https://github.com/openwrt/openwrt/pull/15806
Signed-off-by: Robert Marko <
[email protected]
>
tools/e2fsprogs/Makefile
patch
|
blob
|
history
diff --git
a/tools/e2fsprogs/Makefile
b/tools/e2fsprogs/Makefile
index c4895add120a69acd145945645ee46c24a795e2f..1025b7ec5eb16902293694230ae0f4f512c4840e 100644
(file)
--- a/
tools/e2fsprogs/Makefile
+++ b/
tools/e2fsprogs/Makefile
@@
-38,9
+38,8
@@
define Host/Prepare
rm -rf $(HOST_BUILD_DIR)/doc
endef
-define Host/Clean
- rm -f $(STAGING_DIR_HOST)/bin/e2fsck
- rm -f $(STAGING_DIR_HOST)/bin/tune2fs
+define Host/Uninstall
+ -$(call Host/Compile/Default,uninstall)
endef
$(eval $(call HostBuild))