summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-11-20 16:35:14 -0700
committerChris Larson <chris_larson@mentor.com>2010-11-20 16:35:14 -0700
commitbc0e147762769659b025b650b6b8da01ecf2248c (patch)
tree56013abbcbbce1b6ee9d82336579d476c57c636e /lib/bb/fetch
parent6dac30d2256acaa0bb340f2b1040afe21e0bc421 (diff)
downloadbitbake-bc0e147762769659b025b650b6b8da01ecf2248c.tar.gz
Revert "svn fetcher: warn people to switch to SRCREV"
1) too spammy 2) can be implemented in the metadata instead This reverts commit 8da9744fcdf856abebcfbe9e3bc1b8cf07bc317b.
Diffstat (limited to 'lib/bb/fetch')
-rw-r--r--lib/bb/fetch/svn.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bb/fetch/svn.py b/lib/bb/fetch/svn.py
index e53f59036..dc35c9d12 100644
--- a/lib/bb/fetch/svn.py
+++ b/lib/bb/fetch/svn.py
@@ -60,14 +60,13 @@ class Svn(Fetch):
ud.date = ud.parm['date']
ud.revision = ""
else:
+ #
# ***Nasty hack***
# If DATE in unexpanded PV, use ud.date (which is set from SRCDATE)
# Should warn people to switch to SRCREV here
#
pv = data.getVar("PV", d, 0)
if "DATE" in pv:
- f = data.getVar("FILE", d, 1)
- logger.warn("You should switch to SRCREV; pv='%s' in %s" % (pv, f))
ud.revision = ""
else:
rev = Fetch.srcrev_internal_helper(ud, d)