From 996fd88d4ab61f423ee3e3b4697225af3b5ad63f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Mon, 3 Jan 2011 15:35:43 +0100 Subject: [PATCH 1/1] handle module name changes --- module-tools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.43.0