diff options
-rw-r--r-- | scripts/lib/recipetool/create.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index 15aa9bdbb3..e2941d7753 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -108,6 +108,11 @@ def create_recipe(args): | |||
108 | # Assume the archive contains the directory structure verbatim | 108 | # Assume the archive contains the directory structure verbatim |
109 | # so we need to extract to a subdirectory | 109 | # so we need to extract to a subdirectory |
110 | fetchuri += ';subdir=%s' % os.path.splitext(os.path.basename(urlparse.urlsplit(fetchuri).path))[0] | 110 | fetchuri += ';subdir=%s' % os.path.splitext(os.path.basename(urlparse.urlsplit(fetchuri).path))[0] |
111 | git_re = re.compile('(https?)://([^;]+\.git)(;.*)?') | ||
112 | res = git_re.match(fetchuri) | ||
113 | if res: | ||
114 | # Need to switch the URI around so that the git fetcher is used | ||
115 | fetchuri = 'git://%s;protocol=%s%s' % (res.group(2), res.group(1), res.group(3) or '') | ||
111 | srcuri = fetchuri | 116 | srcuri = fetchuri |
112 | rev_re = re.compile(';rev=([^;]+)') | 117 | rev_re = re.compile(';rev=([^;]+)') |
113 | res = rev_re.search(srcuri) | 118 | res = rev_re.search(srcuri) |