diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-22 00:27:55 +0100 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-22 00:27:55 +0100 |
| commit | ac9e6822f1e83baf6b1430a352adbca9c9185597 (patch) | |
| tree | 0c5fd308e9a40d065620ced250d5844319555ff2 /meta/lib/oe/path.py | |
| parent | 87dba4254b74a43bb712495ba8ebd71890a92634 (diff) | |
| download | poky-ac9e6822f1e83baf6b1430a352adbca9c9185597.tar.gz | |
lib/oe/path: Use bb.utils.copyfile as shutils can't cope with copying unreadable files
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
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 d671ce9216..f42faeab26 100644 --- a/meta/lib/oe/path.py +++ b/meta/lib/oe/path.py | |||
| @@ -70,7 +70,7 @@ def copytree(src, dst): | |||
| 70 | elif os.path.isdir(srcname): | 70 | elif os.path.isdir(srcname): |
| 71 | copytree(srcname, dstname) | 71 | copytree(srcname, dstname) |
| 72 | else: | 72 | else: |
| 73 | shutil.copy2(srcname, dstname) | 73 | bb.utils.copyfile(srcname, dstname) |
| 74 | except (IOError, os.error), why: | 74 | except (IOError, os.error), why: |
| 75 | errors.append((srcname, dstname, str(why))) | 75 | errors.append((srcname, dstname, str(why))) |
| 76 | # catch the Error from the recursive copytree so that we can | 76 | # catch the Error from the recursive copytree so that we can |
