From: Felix Fietkau Date: Tue, 30 Aug 2005 21:53:25 +0000 (+0000) Subject: fix for adding files to image builder make X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=8cb6237005cb788bd12492c8f60925eb25531e48;p=openwrt%2Fsvn-archive%2Farchive.git fix for adding files to image builder make SVN-Revision: 1801 --- diff --git a/openwrt/target/linux/imagebuilder/Makefile b/openwrt/target/linux/imagebuilder/Makefile index 95b0939c4e..c70fb11e93 100644 --- a/openwrt/target/linux/imagebuilder/Makefile +++ b/openwrt/target/linux/imagebuilder/Makefile @@ -40,9 +40,9 @@ build: $(IPKG_KERNEL) install `ls packages/$${package}_*`; \ done if [ -d ./files ]; then \ - cp -fpR ./files/* $(LINUX_BUILD_DIR)/root; \ + cp -a --remove-destination ./files/* $(LINUX_BUILD_DIR)/root; \ fi if [ -d ./files.$(LIST) ]; then \ - cp -fpR ./files.$(LIST)/* $(LINUX_BUILD_DIR)/root; \ + cp -a --remove-destination ./files.$(LIST)/* $(LINUX_BUILD_DIR)/root; \ fi $(MAKE) -S -C image KERNEL="$(KERNEL)" BOARD="$(BOARD)" BIN_DIR="$(BIN_DIR)/$(LIST)" install