diff options
author | Mei Lei <lei.mei@intel.com> | 2011-12-06 17:09:52 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-06 14:25:47 +0000 |
commit | 7f38cbef365c05d75563760f15b10284147c2de3 (patch) | |
tree | 88ed767783cb6969afd664542f98987e97921811 /meta | |
parent | a228103f0f36f244d29ed0ee6c470b008b3c8099 (diff) | |
download | openembedded-core-7f38cbef365c05d75563760f15b10284147c2de3.tar.gz openembedded-core-7f38cbef365c05d75563760f15b10284147c2de3.tar.bz2 openembedded-core-7f38cbef365c05d75563760f15b10284147c2de3.zip |
distrodata.bbclass:Fix some recipes upstream version check issue.
Some recipes,like rt-tests,clutter-box2d,iproute2,didn't declare upstream protocal, but in distrodata.bbclass, we use rsync as the default protocal,
this will lead an error when checking upstream version.
Change default protocal from rsync to git in distrodata.bbclass.
Signed-off-by: Mei Lei <lei.mei@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/distrodata.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index 0c0b549fef..ff5b836871 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass @@ -562,7 +562,7 @@ python do_checkpkg() { if 'protocol' in parm: gitproto = parm['protocol'] else: - gitproto = "rsync" + gitproto = "git" gitcmd = "git ls-remote %s://%s%s%s *tag* 2>&1" % (gitproto, gituser, host, path) gitcmd2 = "git ls-remote %s://%s%s%s HEAD 2>&1" % (gitproto, gituser, host, path) tmp = os.popen(gitcmd).read() |