Signed-off-by: Graham Gower <graham.gower@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
is done via the install task, so we need to define a do_install function
in the recipe to describe how to install the package:<screen>do_install() {
install -m 0755 -d ${D}${bindir} ${D}${docdir}/myhelloworld
- install -m 0644 ${S}/myhelloworld ${D}${bindir}
+ install -m 0755 ${S}/myhelloworld ${D}${bindir}
install -m 0644 ${WORKDIR}/README.txt ${D}${docdir}/myhelloworld
}</screen></para>