From: Graham Gower Date: Tue, 13 Jul 2010 18:48:39 +0000 (+0000) Subject: usermanual/chapters/recipes.xml: Executables should be executable. X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4cdc30178c0b506e25d706a5371e417deb82ce8;p=openembedded.git usermanual/chapters/recipes.xml: Executables should be executable. Signed-off-by: Graham Gower Signed-off-by: Khem Raj --- diff --git a/docs/usermanual/chapters/recipes.xml b/docs/usermanual/chapters/recipes.xml index fdee72c75d..5b0ff143e4 100644 --- a/docs/usermanual/chapters/recipes.xml +++ b/docs/usermanual/chapters/recipes.xml @@ -1138,7 +1138,7 @@ PR = "r0" 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: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 }