diff options
| author | Richard Purdie <richard@openedhand.com> | 2007-08-16 08:52:43 +0000 | 
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2007-08-16 08:52:43 +0000 | 
| commit | 11ce59b501b5c82f6705db4d76e468fcbe3412db (patch) | |
| tree | b83ac076e11310e33bdbc7d30d7b7160a8704b51 | |
| parent | 7064e6bd0b0a2439dbd4685f78768213a236d115 (diff) | |
| download | openembedded-core-11ce59b501b5c82f6705db4d76e468fcbe3412db.tar.gz openembedded-core-11ce59b501b5c82f6705db4d76e468fcbe3412db.tar.bz2 openembedded-core-11ce59b501b5c82f6705db4d76e468fcbe3412db.zip | |
bitbake fetch/git.py: Don't use master as a tag
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2501 311d38ba-8fff-0310-9ca6-ca027cbcb966
| -rw-r--r-- | bitbake/lib/bb/fetch/git.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 7d55ee9138..31c54d6e9c 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py @@ -51,7 +51,7 @@ class Git(Fetch):              ud.proto = ud.parm['protocol']          tag = data.getVar("SRCREV", d, 0) -        if 'tag' in ud.parm: +        if 'tag' in ud.parm and len(tag) == 40:              ud.tag = ud.parm['tag']          elif tag and "get_srcrev" not in tag and len(tag) == 40:              ud.tag = tag | 
