【发布时间】:2016-05-30 15:30:46
【问题描述】:
在我的 AndroidBoard.mk 中有这一行
# device.mk doesn't know about us, and we can't PRODUCT_COPY_FILES here.
# So cp will do.
.PHONY: $(PRODUCT_OUT)/kernel
$(PRODUCT_OUT)/kernel: $(TARGET_PREBUILT_KERNEL)
cp $(TARGET_PREBUILT_KERNEL) $(PRODUCT_OUT)/kernel
但是终端给了我这个错误:
cp out/target/product/w7/kernel
cp: missing destination file operand after ‘out/target/product/w7/kernel’
Try 'cp --help' for more information.
make: *** [out/target/product/w7/kernel] Error 1
它有什么问题? :(
【问题讨论】:
标签: android command kernel rom