projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4741579
)
allow files/ to overwrite existing symlinks (fixes #3508)
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 23 Jan 2011 20:59:13 +0000
(20:59 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 23 Jan 2011 20:59:13 +0000
(20:59 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25078
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/Makefile
patch
|
blob
|
history
diff --git
a/package/Makefile
b/package/Makefile
index
786edd4
..
8e8c6c9
100644
(file)
--- 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
This page took
0.023407 seconds
and
4
git commands to generate.