allow files/ to overwrite existing symlinks (fixes #3508)
SVN-Revision: 25078
This commit is contained in:
parent
a15b4bf6fc
commit
26c3d87db0
1 changed files with 8 additions and 0 deletions
|
@ -64,6 +64,14 @@ endif
|
||||||
$(curdir)/rootfs-prepare: $(TMP_DIR)/.build
|
$(curdir)/rootfs-prepare: $(TMP_DIR)/.build
|
||||||
@-$(MAKE) package/preconfig
|
@-$(MAKE) package/preconfig
|
||||||
@if [ -d $(TOPDIR)/files ]; then \
|
@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); \
|
$(CP) $(TOPDIR)/files/. $(TARGET_DIR); \
|
||||||
fi
|
fi
|
||||||
@mkdir -p $(TARGET_DIR)/etc/rc.d
|
@mkdir -p $(TARGET_DIR)/etc/rc.d
|
||||||
|
|
Loading…
Reference in a new issue