]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake svn fetcher: Don't use a date when a revision is specified
authorRichard Purdie <richard@openedhand.com>
Tue, 2 Jan 2007 16:52:41 +0000 (16:52 +0000)
committerRichard Purdie <richard@openedhand.com>
Tue, 2 Jan 2007 16:52:41 +0000 (16:52 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1112 311d38ba-8fff-0310-9ca6-ca027cbcb966

bitbake/lib/bb/fetch/svn.py

index a5dc91aaff3c78e77dfb0ed0beeecae3d535059a..ebd5bebab7f8841934db24d4cb3791e014439297 100644 (file)
@@ -55,6 +55,9 @@ class Svn(Fetch):
         if 'rev' in ud.parm:
             ud.revision = ud.parm['rev']
 
+        if ud.revision:
+            ud.date = ""
+
         ud.localfile = data.expand('%s_%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision, ud.date), d)
 
         return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile)