summaryrefslogtreecommitdiff
path: root/package/Makefile
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-12-02 12:20:38 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-12-02 12:20:38 +0000
commita99b0363d0e3974087695f47f3c60b8959ae815a (patch)
tree73694885fc78f3ce7ac993ba983bff6f1955841c /package/Makefile
parent828597693e9dd776ca65dab2506a650fba5087d3 (diff)
downloadmtk-20170518-a99b0363d0e3974087695f47f3c60b8959ae815a.zip
mtk-20170518-a99b0363d0e3974087695f47f3c60b8959ae815a.tar.gz
mtk-20170518-a99b0363d0e3974087695f47f3c60b8959ae815a.tar.bz2
package: use file_copy to deploy files/ in the package/install phase
SVN-Revision: 34438
Diffstat (limited to 'package/Makefile')
-rw-r--r--package/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/package/Makefile b/package/Makefile
index eab3f85..e88efdf 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -89,15 +89,7 @@ $(curdir)/install: $(TMP_DIR)/.build
done || true
@-$(MAKE) package/preconfig
@if [ -d $(TOPDIR)/files ]; then \
- ( cd $(TOPDIR)/files; find -type f ) | \
- ( cd $(TARGET_DIR); while :; do \
- read FILE; \
- [ -z "$$FILE" ] && break; \
- [ -L "$$FILE" ] || continue; \
- echo "Removing symlink $(TARGET_DIR)/$$FILE"; \
- rm -f "$$FILE"; \
- done; ); \
- $(CP) $(TOPDIR)/files/. $(TARGET_DIR); \
+ $(call file_copy,$(TOPDIR)/files/.,$(TARGET_DIR)); \
fi
@mkdir -p $(TARGET_DIR)/etc/rc.d
@( \