diff options
Diffstat (limited to 'documentation/overview-manual/concepts.rst')
-rw-r--r-- | documentation/overview-manual/concepts.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst index c9405cdd33..b34de4d361 100644 --- a/documentation/overview-manual/concepts.rst +++ b/documentation/overview-manual/concepts.rst | |||
@@ -704,7 +704,7 @@ the Yocto Project Reference Manual. | |||
704 | 704 | ||
705 | Each recipe has an area in the :term:`Build Directory` where the unpacked | 705 | Each recipe has an area in the :term:`Build Directory` where the unpacked |
706 | source code resides. The :term:`UNPACKDIR` variable points to this area for a | 706 | source code resides. The :term:`UNPACKDIR` variable points to this area for a |
707 | recipe's unpacked source code, and has the default ``sources-unpack`` name. The | 707 | recipe's unpacked source code, and has the default ``sources`` name. The |
708 | preceding figure and the following list describe the :term:`Build Directory`'s | 708 | preceding figure and the following list describe the :term:`Build Directory`'s |
709 | hierarchy: | 709 | hierarchy: |
710 | 710 | ||
@@ -2368,8 +2368,6 @@ The contents of ``libhello_0.1.bb`` are:: | |||
2368 | # Change <username> accordingly | 2368 | # Change <username> accordingly |
2369 | SRC_URI = "git://github.com/<username>/libhello;branch=main;protocol=https" | 2369 | SRC_URI = "git://github.com/<username>/libhello;branch=main;protocol=https" |
2370 | 2370 | ||
2371 | S = "${WORKDIR}/git" | ||
2372 | |||
2373 | do_install(){ | 2371 | do_install(){ |
2374 | install -d ${D}${includedir} | 2372 | install -d ${D}${includedir} |
2375 | install -d ${D}${libdir} | 2373 | install -d ${D}${libdir} |
@@ -2394,8 +2392,6 @@ The contents of ``sayhello_0.1.bb`` are:: | |||
2394 | DEPENDS += "libhello" | 2392 | DEPENDS += "libhello" |
2395 | RDEPENDS:${PN} += "libhello" | 2393 | RDEPENDS:${PN} += "libhello" |
2396 | 2394 | ||
2397 | S = "${WORKDIR}/git" | ||
2398 | |||
2399 | do_install(){ | 2395 | do_install(){ |
2400 | install -d ${D}/usr/bin | 2396 | install -d ${D}/usr/bin |
2401 | install -m 0700 sayhello ${D}/usr/bin | 2397 | install -m 0700 sayhello ${D}/usr/bin |