aboutsummaryrefslogtreecommitdiffstats
path: root/docs/usermanual/chapters
diff options
context:
space:
mode:
authorGraham Gower <graham.gower@gmail.com>2010-07-13 18:48:39 +0000
committerKhem Raj <raj.khem@gmail.com>2010-07-13 23:31:15 -0700
commitb4cdc30178c0b506e25d706a5371e417deb82ce8 (patch)
treed0e0a06644956a3df2569b4b43bac26294841dd5 /docs/usermanual/chapters
parent440b956c99f36007c9799e26c79a57165572f541 (diff)
downloadopenembedded-b4cdc30178c0b506e25d706a5371e417deb82ce8.tar.gz
usermanual/chapters/recipes.xml: Executables should be executable.
Signed-off-by: Graham Gower <graham.gower@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'docs/usermanual/chapters')
-rw-r--r--docs/usermanual/chapters/recipes.xml2
1 files changed, 1 insertions, 1 deletions
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"</screen></para>
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>