diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-03-02 08:33:49 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-03 22:51:33 +0000 |
commit | 54e10127c495bdb31cfef234cd2def0c4f8cf0b0 (patch) | |
tree | 422cda19c1e69a0c69c34fd843b0164591ca029f /bitbake/lib/bb/fetch2/perforce.py | |
parent | c07a153e7232d7070e97f5e661a8b2831b303806 (diff) | |
download | poky-54e10127c495bdb31cfef234cd2def0c4f8cf0b0.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/lib/bb/fetch2/perforce.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/perforce.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/perforce.py b/bitbake/lib/bb/fetch2/perforce.py index 6347834c76..cbdc84853c 100644 --- a/bitbake/lib/bb/fetch2/perforce.py +++ b/bitbake/lib/bb/fetch2/perforce.py | |||
@@ -152,7 +152,7 @@ class Perforce(FetchMethod): | |||
152 | 152 | ||
153 | # create temp directory | 153 | # create temp directory |
154 | logger.debug(2, "Fetch: creating temporary directory") | 154 | logger.debug(2, "Fetch: creating temporary directory") |
155 | bb.mkdirhier(data.expand('${WORKDIR}', localdata)) | 155 | bb.utils.mkdirhier(data.expand('${WORKDIR}', localdata)) |
156 | data.setVar('TMPBASE', data.expand('${WORKDIR}/oep4.XXXXXX', localdata), localdata) | 156 | data.setVar('TMPBASE', data.expand('${WORKDIR}/oep4.XXXXXX', localdata), localdata) |
157 | tmppipe = os.popen(data.getVar('MKTEMPDIRCMD', localdata, True) or "false") | 157 | tmppipe = os.popen(data.getVar('MKTEMPDIRCMD', localdata, True) or "false") |
158 | tmpfile = tmppipe.readline().strip() | 158 | tmpfile = tmppipe.readline().strip() |