From 651ee3b9d425d70e2e9ec9dad65691fed6aeaa6e Mon Sep 17 00:00:00 2001 From: jow Date: Sun, 2 Dec 2012 12:20:38 +0000 Subject: [PATCH] package: use file_copy to deploy files/ in the package/install phase git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34438 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/Makefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/package/Makefile b/package/Makefile index eab3f85dd6..e88efdfe9f 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 @( \ -- 2.11.0