Revert "svn fetcher: warn people to switch to SRCREV"

1) too spammy
2) can be implemented in the metadata instead

This reverts commit 8da9744fcdf856abebcfbe9e3bc1b8cf07bc317b.

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson 2010-11-20 16:35:14 -07:00 committed by Richard Purdie
parent 66b364cf8e
commit e81fc749f3
1 changed files with 1 additions and 2 deletions

View File

@ -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)