diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-30 21:53:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-30 21:53:25 +0000 |
commit | 363bee365e7d74d55101dc258c6d6c60f12b9843 (patch) | |
tree | 360286c7b86c54227cdbf681e9ef0b577142d7bd /target/linux/imagebuilder | |
parent | fad6b71b9c4e3cf9fea7c391ce6c461dee49e6c6 (diff) | |
download | upstream-363bee365e7d74d55101dc258c6d6c60f12b9843.tar.gz upstream-363bee365e7d74d55101dc258c6d6c60f12b9843.tar.bz2 upstream-363bee365e7d74d55101dc258c6d6c60f12b9843.zip |
fix for adding files to image builder make
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1801 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/imagebuilder')
-rw-r--r-- | target/linux/imagebuilder/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/imagebuilder/Makefile b/target/linux/imagebuilder/Makefile index 95b0939c4e..c70fb11e93 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 |