1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 05:40:24 +03:00

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
This commit is contained in:
nbd 2008-02-09 19:28:50 +00:00
parent e7093a5178
commit 59824b52f7

View File

@ -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