imagebuilder: merge r25078 to align files/ handling with current buildroot

SVN-Revision: 34301
This commit is contained in:
Jo-Philipp Wich 2012-11-22 19:46:54 +00:00
parent a21fbec006
commit b73f22de1e
1 changed files with 8 additions and 0 deletions

View File

@ -134,6 +134,14 @@ package_install: FORCE
copy_files: FORCE
@echo
@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)/
package_postinst: FORCE