From b4cdc30178c0b506e25d706a5371e417deb82ce8 Mon Sep 17 00:00:00 2001 From: Graham Gower Date: Tue, 13 Jul 2010 18:48:39 +0000 Subject: usermanual/chapters/recipes.xml: Executables should be executable. Signed-off-by: Graham Gower Signed-off-by: Khem Raj --- docs/usermanual/chapters/recipes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 } -- cgit 1.2.3-korg