diff options
Diffstat (limited to 'meta/lib/oe/path.py')
-rw-r--r-- | meta/lib/oe/path.py | 2 |
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 | ||