From: Christian Marangi Date: Wed, 22 May 2024 09:56:45 +0000 (+0200) Subject: tools/padjffs2: use Host/Prepare/Default instead of raw commands X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=refs%2Fheads%2Fmaster;p=openwrt%2Fstaging%2Fstintel.git tools/padjffs2: use Host/Prepare/Default instead of raw commands Now that Host/Prepare/Default is always defined, we can use that instead of using raw commands to move files from the src directory to HOST_BUILD_DIR. Signed-off-by: Christian Marangi --- diff --git a/tools/padjffs2/Makefile b/tools/padjffs2/Makefile index 422d14db30..b893fadce5 100644 --- a/tools/padjffs2/Makefile +++ b/tools/padjffs2/Makefile @@ -13,8 +13,7 @@ PKG_RELEASE:=1 include $(INCLUDE_DIR)/host-build.mk define Host/Prepare - mkdir -p $(HOST_BUILD_DIR) - $(CP) ./src/* $(HOST_BUILD_DIR)/ + $(call Host/Prepare/Default) find $(HOST_BUILD_DIR) -name .svn | $(XARGS) rm -rf endef