On Tuesday 22 September 2015 14:24:04 Markus Lehtonen wrote:
> Rename fails over filesystem boundaries.
> 
> Signed-off-by: Markus Lehtonen <markus.lehto...@linux.intel.com>
> ---
>  scripts/lib/devtool/upgrade.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py
> index e74e795..18e010c 100644
> --- a/scripts/lib/devtool/upgrade.py
> +++ b/scripts/lib/devtool/upgrade.py
> @@ -53,7 +53,7 @@ def _copy_source_code(orig, dest):
>          dest_dir = os.path.join(dest, os.path.dirname(path))
>          bb.utils.mkdirhier(dest_dir)
>          dest_path = os.path.join(dest, path)
> -        os.rename(os.path.join(orig, path), dest_path)
> +        shutil.move(os.path.join(orig, path), dest_path)
> 
>  def _get_checksums(rf):
>      import re

Ah yes, good catch.

Acked-by: Paul Eggleton <paul.eggle...@linux.intel.com>

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre
-- 
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to