summaryrefslogtreecommitdiffstats
path: root/target/linux/imagebuilder/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/imagebuilder/Makefile')
-rw-r--r--target/linux/imagebuilder/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/imagebuilder/Makefile b/target/linux/imagebuilder/Makefile
index 0ec71199c..8ed7a5cc0 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 -a --remove-destination ./files/* $(LINUX_BUILD_DIR)/root; \
+ $(CP) --remove-destination ./files/* $(LINUX_BUILD_DIR)/root; \
fi
if [ -d ./files.$(LIST) ]; then \
- cp -a --remove-destination ./files.$(LIST)/* $(LINUX_BUILD_DIR)/root; \
+ $(CP) --remove-destination ./files.$(LIST)/* $(LINUX_BUILD_DIR)/root; \
fi
$(MAKE) -S -C image KERNEL="$(KERNEL)" BOARD="$(BOARD)" BIN_DIR="$(BIN_DIR)/$(LIST)" install