diff options
| author | Christian Marangi | 2024-05-22 09:56:45 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-05-22 10:00:40 +0000 |
| commit | aa77c796fec90e3e328c5b33d9239bd4910f1e9a (patch) | |
| tree | 918b59e2d31122141f1bd788b3da6f4319921caa | |
| parent | 9897724adaaefdbd4da0067dced23efa9c536643 (diff) | |
| download | openwrt-aa77c796fec90e3e328c5b33d9239bd4910f1e9a.tar.gz | |
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 <ansuelsmth@gmail.com>
(cherry picked from commit 01048c7456785bc4a45452c84d8f31635e1fa60b)
| -rw-r--r-- | tools/padjffs2/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
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 |