diff options
-rw-r--r-- | documentation/overview-manual/concepts.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst index 99a8f02a03..e8569e4f53 100644 --- a/documentation/overview-manual/concepts.rst +++ b/documentation/overview-manual/concepts.rst | |||
@@ -2396,8 +2396,8 @@ The contents of ``sayhello_0.1.bb`` are:: | |||
2396 | RDEPENDS:${PN} += "libhello" | 2396 | RDEPENDS:${PN} += "libhello" |
2397 | 2397 | ||
2398 | do_install(){ | 2398 | do_install(){ |
2399 | install -d ${D}/usr/bin | 2399 | install -d ${D}${bindir} |
2400 | install -m 0700 sayhello ${D}/usr/bin | 2400 | install -m 0700 sayhello ${D}${bindir} |
2401 | } | 2401 | } |
2402 | 2402 | ||
2403 | After placing the recipes in a custom layer we can run ``bitbake sayhello`` | 2403 | After placing the recipes in a custom layer we can run ``bitbake sayhello`` |