summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-08-03 17:02:43 +0200
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-04 16:12:39 +0100
commit8105d4381fc499fc1d47d1b1791e84560dc29063 (patch)
tree3eb456c7e439f85f3ea39837674ad561c54c3206 /bitbake
parent9383074deb75fda69d2302f85d03618fa1b5fe27 (diff)
downloadpoky-8105d4381fc499fc1d47d1b1791e84560dc29063.tar.gz
*: Fix typo in documentation
s/dictonary/dictionary/ (Bitbake rev: 0cc632761e75f66a8ce5ca2fe370f7551ccbfdf0) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/ChangeLog2
-rw-r--r--bitbake/lib/bb/build.py2
-rw-r--r--bitbake/lib/bb/utils.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/ChangeLog b/bitbake/ChangeLog
index 22124cb7ea..4ac2a64462 100644
--- a/bitbake/ChangeLog
+++ b/bitbake/ChangeLog
@@ -138,7 +138,7 @@ Changes in Bitbake 1.9.x:
138 directory != the cache dir. 138 directory != the cache dir.
139 - Add md5 and sha256 checksum generation functions to utils.py 139 - Add md5 and sha256 checksum generation functions to utils.py
140 - Correctly handle '-' characters in class names (#2958) 140 - Correctly handle '-' characters in class names (#2958)
141 - Make sure expandKeys has been called on the data dictonary before running tasks 141 - Make sure expandKeys has been called on the data dictionary before running tasks
142 - Correctly add a task override in the form task-TASKNAME. 142 - Correctly add a task override in the form task-TASKNAME.
143 - Revert the '-' character fix in class names since it breaks things 143 - Revert the '-' character fix in class names since it breaks things
144 - When a regexp fails to compile for PACKAGES_DYNAMIC, print a more useful error (#4444) 144 - When a regexp fails to compile for PACKAGES_DYNAMIC, print a more useful error (#4444)
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 5e1aaee802..0b974ebc2a 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -308,7 +308,7 @@ def exec_task(task, d):
308 308
309def extract_stamp(d, fn): 309def extract_stamp(d, fn):
310 """ 310 """
311 Extracts stamp format which is either a data dictonary (fn unset) 311 Extracts stamp format which is either a data dictionary (fn unset)
312 or a dataCache entry (fn set). 312 or a dataCache entry (fn set).
313 """ 313 """
314 if fn: 314 if fn:
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 665ffff45a..db99058701 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -250,7 +250,7 @@ def explode_dep_versions(s):
250 """ 250 """
251 Take an RDEPENDS style string of format: 251 Take an RDEPENDS style string of format:
252 "DEPEND1 (optional version) DEPEND2 (optional version) ..." 252 "DEPEND1 (optional version) DEPEND2 (optional version) ..."
253 and return a dictonary of dependencies and versions. 253 and return a dictionary of dependencies and versions.
254 """ 254 """
255 r = {} 255 r = {}
256 l = s.split() 256 l = s.split()