usermanual/chapters/recipes.xml: Executables should be executable.
authorGraham Gower <graham.gower@gmail.com>
Tue, 13 Jul 2010 18:48:39 +0000 (18:48 +0000)
committerKhem Raj <raj.khem@gmail.com>
Wed, 14 Jul 2010 06:31:15 +0000 (23:31 -0700)
Signed-off-by: Graham Gower <graham.gower@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
docs/usermanual/chapters/recipes.xml

index fdee72c..5b0ff14 100644 (file)
@@ -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>