From: nbd Date: Tue, 30 Aug 2005 21:53:25 +0000 (+0000) Subject: fix for adding files to image builder make X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/3a762f962413fd68ef0ff118d22dec031abcd5ec?hp=809ea71fa5b65a34a393ec4aa67d0f9c286c874e fix for adding files to image builder make git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1801 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/imagebuilder/Makefile b/target/linux/imagebuilder/Makefile index 95b0939c4..c70fb11e9 100644 --- a/target/linux/imagebuilder/Makefile +++ b/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