summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-03-02 00:37:20 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-02 17:12:54 +0000
commitd868a6a60c915222e50a62f21000d87c9f528d44 (patch)
tree840d3a9cd3aaac8b89f1d90821397c8f22879e65 /meta/lib
parent0f44acfd04ecc9709d5d47e7484f2481b3c64cd8 (diff)
downloadpoky-d868a6a60c915222e50a62f21000d87c9f528d44.tar.gz
lib/oe/path.py: Use bb.utils.mkdirhier instead of bb.mkdirhier
(From OE-Core rev: 5a22a8c06743b0a8a3d949288b99d53bd4b7ceb3) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/path.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/path.py b/meta/lib/oe/path.py
index 48138605d0..08ddbf22aa 100644
--- a/meta/lib/oe/path.py
+++ b/meta/lib/oe/path.py
@@ -52,7 +52,7 @@ def copytree(src, dst):
52 # If dst already has contents performance can be 15 time slower 52 # If dst already has contents performance can be 15 time slower
53 # This way we also preserve hardlinks between files in the tree. 53 # This way we also preserve hardlinks between files in the tree.
54 54
55 bb.mkdirhier(dst) 55 bb.utils.mkdirhier(dst)
56 cmd = 'tar -cf - -C %s -ps . | tar -xf - -C %s' % (src, dst) 56 cmd = 'tar -cf - -C %s -ps . | tar -xf - -C %s' % (src, dst)
57 check_output(cmd, shell=True, stderr=subprocess.STDOUT) 57 check_output(cmd, shell=True, stderr=subprocess.STDOUT)
58 58