Skip to content
Snippets Groups Projects
Commit 476ea2bc authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

imagebuilder: use file_copy to deploy files/ in the image generation phase

SVN-Revision: 34439
parent a99b0363
Branches
No related tags found
No related merge requests found
......@@ -134,15 +134,7 @@ 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)/
@$(call file_copy,$(USER_FILES)/*,$(TARGET_DIR)/)
package_postinst: FORCE
@echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment