diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-01-23 20:59:13 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-01-23 20:59:13 +0000 |
commit | c7c47ef48956bf106e4f12384790596728ccd603 (patch) | |
tree | 3699d0cc73e4a503ac3a4f429128f21f68d6b499 /package/Makefile | |
parent | 3021d3ebe81480324dd14051cc1e4e34fbcb5d59 (diff) | |
download | master-187ad058-c7c47ef48956bf106e4f12384790596728ccd603.tar.gz master-187ad058-c7c47ef48956bf106e4f12384790596728ccd603.tar.bz2 master-187ad058-c7c47ef48956bf106e4f12384790596728ccd603.zip |
allow files/ to overwrite existing symlinks (fixes #3508)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25078 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/Makefile b/package/Makefile index 786edd49f0..8e8c6c9a63 100644 --- a/package/Makefile +++ b/package/Makefile @@ -64,6 +64,14 @@ endif $(curdir)/rootfs-prepare: $(TMP_DIR)/.build @-$(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); \ fi @mkdir -p $(TARGET_DIR)/etc/rc.d |