mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:01:52 +02:00
imagebuilder: merge r25078 to align files/ handling with current buildroot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34301 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
172a68af5b
commit
d2cb7f74bf
@ -134,6 +134,14 @@ package_install: FORCE
|
|||||||
copy_files: FORCE
|
copy_files: FORCE
|
||||||
@echo
|
@echo
|
||||||
@echo Copying extra files
|
@echo Copying extra files
|
||||||
|
@( cd $(USER_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) $(USER_FILES)/* $(TARGET_DIR)/
|
$(CP) $(USER_FILES)/* $(TARGET_DIR)/
|
||||||
|
|
||||||
package_postinst: FORCE
|
package_postinst: FORCE
|
||||||
|
Loading…
Reference in New Issue
Block a user