diff options
| -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):              elif os.path.isdir(srcname):                  copytree(srcname, dstname)              else: -                shutil.copy2(srcname, dstname) +                bb.utils.copyfile(srcname, dstname)          except (IOError, os.error), why:              errors.append((srcname, dstname, str(why)))          # catch the Error from the recursive copytree so that we can | 
