From: Barış Metin Date: Mon, 3 Jan 2011 14:35:43 +0000 (+0100) Subject: handle module name changes X-Git-Tag: 5.0-rc18~136^2~3 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=996fd88d4ab61f423ee3e3b4697225af3b5ad63f;hp=6719939f372ab2089ba5fda311eac9db9be50657;p=build.git handle module name changes --- diff --git a/module-tools.py b/module-tools.py index 3ddfb6da..959a0e11 100755 --- a/module-tools.py +++ b/module-tools.py @@ -1204,7 +1204,8 @@ class Build(Module): try: name, url = line.split(':=') name, git_or_svn_path = name.rsplit('-', 1) - modules[name.strip()] = (git_or_svn_path.strip(), url.strip()) + name = svn_to_git_name(name.strip()) + modules[name] = (git_or_svn_path.strip(), url.strip()) except: pass return modules