summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-03-02 00:37:20 -0800
committerSaul Wold <sgw@linux.intel.com>2011-03-03 16:33:57 -0800
commit84752f34f98a3c78c94b0cd643cdf835a8e32c72 (patch)
treef801b7b9b4e0fb06b44001346fb7f41a8fb838bf /meta
parent3a39d969286a2b2abb81c9d055ad558c258bbea2 (diff)
downloadpoky-84752f34f98a3c78c94b0cd643cdf835a8e32c72.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')
-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