summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-02-09 19:28:50 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-02-09 19:28:50 +0000
commit59824b52f74707baccec89440794162175083ee6 (patch)
tree51551d4f2c69b3d51a21132c1513f996a7624920 /target
parente7093a5178c6f675e0c1bc1c2a4f6d9c6bafdf8f (diff)
use cp instead of $(CP), because bzImage might be a symlink
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10435 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/olpc/image/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/olpc/image/Makefile b/target/linux/olpc/image/Makefile
index b433ac45a..a245d72cf 100644
--- a/target/linux/olpc/image/Makefile
+++ b/target/linux/olpc/image/Makefile
@@ -39,7 +39,7 @@ ifeq ($(CONFIG_OLPC_BOOTSCRIPT_IMAGES),y)
endif
define Image/Prepare
- $(CP) $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/bzImage
+ cp $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/bzImage
$(call Image/Prepare/bootscript)
endef