We were trying to move this from the current directory instead of the path. Let's just use shutil.move() instead of shelling out to mv.
Signed-off-by: Paul Eggleton <paul.eggle...@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 77b48f4..f2a93b7 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py @@ -81,7 +81,7 @@ def _rename_recipe_dirs(oldpv, newpv, path): if olddir.find(oldpv) != -1: newdir = olddir.replace(oldpv, newpv) if olddir != newdir: - _run('mv %s %s' % (olddir, newdir)) + shutil.move(os.path.join(path, olddir), os.path.join(path, newdir)) def _rename_recipe_file(bpn, oldpv, newpv, path): oldrecipe = "%s_%s.bb" % (bpn, oldpv) -- 2.5.0 -- _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core