Browse Source

use cp instead of $(CP), because bzImage might be a symlink

SVN-Revision: 10435
Felix Fietkau 18 years ago
parent
commit
dc3497fcda
1 changed files with 1 additions and 1 deletions
  1. 1 1
      target/linux/olpc/image/Makefile

+ 1 - 1
target/linux/olpc/image/Makefile

@@ -39,7 +39,7 @@ ifeq ($(CONFIG_OLPC_BOOTSCRIPT_IMAGES),y)
 endif
 endif
 
 
 define Image/Prepare
 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)
 	$(call Image/Prepare/bootscript)
 endef
 endef