package: use file_copy to deploy files/ in the package/install phase
SVN-Revision: 34438
This commit is contained in:
parent
828597693e
commit
a99b0363d0
1 changed files with 1 additions and 9 deletions
|
@ -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
|
||||
@( \
|
||||
|
|
Loading…
Reference in a new issue