summaryrefslogtreecommitdiffstats
path: root/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml')
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
index 5df00050ce..64f08157f6 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
@@ -435,6 +435,23 @@
435 </para> 435 </para>
436 </section> 436 </section>
437 437
438 <section id='unsetting-variables'>
439 <title>Unseting variables</title>
440
441 <para>
442 It is possible to completely remove a variable or a variable flag
443 from BitBake's internal data dictionary by using the "unset" keyword.
444 Here is an example:
445 <literallayout class='monospaced'>
446 unset DATE
447 unset do_fetch[noexec]
448 </literallayout>
449 These two statements remove the <filename>DATE</filename> and the
450 <filename>do_fetch[noexec]</filename> flag.
451 </para>
452
453 </section>
454
438 <section id='providing-pathnames'> 455 <section id='providing-pathnames'>
439 <title>Providing Pathnames</title> 456 <title>Providing Pathnames</title>
440 457