diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-03-02 08:33:49 +0000 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-03-03 16:33:57 -0800 |
commit | fc94ae7a7717050902e11358a63382f346db1a19 (patch) | |
tree | 4a890afcd752e300d00221fa03815e5637adde82 /bitbake/bin | |
parent | ec8ab907635b161cd2b525f1768651169eb02c7e (diff) | |
download | poky-fc94ae7a7717050902e11358a63382f346db1a19.tar.gz |
fetch, fetch2: Get rid of DeprecationWarning notice
* This patch fixes a cosmetic issue currently we get with master
WARNING: /home/kraj/work/bitbake/lib/bb/fetch2/__init__.py:733:
DeprecationWarning: Call to deprecated function bb.mkdirhier: Please use bb.utils.mkdirhier instead. bb.mkdirhier("%s/%s" % (rootdir, destdir))
(Bitbake rev: 36fe59ce314c295d239b76de34c8714def2c32d5)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitdoc b/bitbake/bin/bitdoc index c2a7061d1b..98fb025a50 100755 --- a/bitbake/bin/bitdoc +++ b/bitbake/bin/bitdoc | |||
@@ -497,7 +497,7 @@ def main(): | |||
497 | doc.insert_doc_item(doc_ins) | 497 | doc.insert_doc_item(doc_ins) |
498 | 498 | ||
499 | # let us create the HTML now | 499 | # let us create the HTML now |
500 | bb.mkdirhier(output_dir) | 500 | bb.utils.mkdirhier(output_dir) |
501 | os.chdir(output_dir) | 501 | os.chdir(output_dir) |
502 | 502 | ||
503 | # Let us create the sites now. We do it in the following order | 503 | # Let us create the sites now. We do it in the following order |