do_install error while running custom bitbake in poky build

感情迁移 提交于 2019-12-03 08:50:17
Pala

The basic differences are the below.

S = "${WORKDIR}/helloworld/"
EXTRA_OEMAKE = 'all -C ${S}'

"EXTRA_OEMAKE" is the key macro which I didn't used before.

I have changed the bitbake file helloworld.bb file like below.

DESCRIPTION = "Simple helloworld application"
SECTION = "examples"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
PR = "r0"

S = "${WORKDIR}/helloworld/"
EXTRA_OEMAKE = 'all -C ${S}'

SRC_URI = "file://helloworld.tar"

inherit autotools gettext
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!