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 | 7c4e0e0e987a7a1d6a6a9f42697a36f99430402b (patch) | |
tree | d48c5fac06b42bce14887ccddf5b544eb6df697e | |
parent | d2adb49a05721d0c29bf37cbecb7d8f32fbed0a6 (diff) | |
download | mtk-20170518-7c4e0e0e987a7a1d6a6a9f42697a36f99430402b.zip mtk-20170518-7c4e0e0e987a7a1d6a6a9f42697a36f99430402b.tar.gz mtk-20170518-7c4e0e0e987a7a1d6a6a9f42697a36f99430402b.tar.bz2 |
fix for adding files to image builder make
SVN-Revision: 1801
-rw-r--r-- | openwrt/target/linux/imagebuilder/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/imagebuilder/Makefile b/openwrt/target/linux/imagebuilder/Makefile index 95b0939..c70fb11 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 |