aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2007-08-18 17:31:56 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2007-08-18 17:31:56 +0000
commit880f02a7a52c96e35cfae4e7a753721f2adaa516 (patch)
treec9989fdc3af75d19ce8e7e51177a3a14a09d6a20 /lib/bb/fetch
parentb7626eccd2d5ecdf20cd2a19195c2a084a287d31 (diff)
downloadbitbake-880f02a7a52c96e35cfae4e7a753721f2adaa516.tar.gz
[regression] Make SRCDATE/CVSDATE for the fetchers work again. This regressed in r653
PN should always be set for files as it comes from bitbake.conf but as we are close to a release make the least intrusive change and copy SRCDATE and CVSDATE to the above line as well. I think the second return is dead code and we should remove it.
Diffstat (limited to 'lib/bb/fetch')
-rw-r--r--lib/bb/fetch/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py
index 41dca017b..c34405738 100644
--- a/lib/bb/fetch/__init__.py
+++ b/lib/bb/fetch/__init__.py
@@ -340,7 +340,7 @@ class Fetch(object):
pn = data.getVar("PN", d, 1)
if pn:
- return data.getVar("SRCDATE_%s" % pn, d, 1) or data.getVar("CVSDATE_%s" % pn, d, 1) or data.getVar("DATE", d, 1)
+ return data.getVar("SRCDATE_%s" % pn, d, 1) or data.getVar("CVSDATE_%s" % pn, d, 1) or data.getVar("SRCDATE", d, 1) or data.getVar("CVSDATE", d, 1) or data.getVar("DATE", d, 1)
return data.getVar("SRCDATE", d, 1) or data.getVar("CVSDATE", d, 1) or data.getVar("DATE", d, 1)
getSRCDate = staticmethod(getSRCDate)