diff options
| -rw-r--r-- | bitbake/lib/bb/fetch/svn.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch/svn.py b/bitbake/lib/bb/fetch/svn.py index e53f59036d..dc35c9d121 100644 --- a/bitbake/lib/bb/fetch/svn.py +++ b/bitbake/lib/bb/fetch/svn.py | |||
| @@ -60,14 +60,13 @@ class Svn(Fetch): | |||
| 60 | ud.date = ud.parm['date'] | 60 | ud.date = ud.parm['date'] |
| 61 | ud.revision = "" | 61 | ud.revision = "" |
| 62 | else: | 62 | else: |
| 63 | # | ||
| 63 | # ***Nasty hack*** | 64 | # ***Nasty hack*** |
| 64 | # If DATE in unexpanded PV, use ud.date (which is set from SRCDATE) | 65 | # If DATE in unexpanded PV, use ud.date (which is set from SRCDATE) |
| 65 | # Should warn people to switch to SRCREV here | 66 | # Should warn people to switch to SRCREV here |
| 66 | # | 67 | # |
| 67 | pv = data.getVar("PV", d, 0) | 68 | pv = data.getVar("PV", d, 0) |
| 68 | if "DATE" in pv: | 69 | if "DATE" in pv: |
| 69 | f = data.getVar("FILE", d, 1) | ||
| 70 | logger.warn("You should switch to SRCREV; pv='%s' in %s" % (pv, f)) | ||
| 71 | ud.revision = "" | 70 | ud.revision = "" |
| 72 | else: | 71 | else: |
| 73 | rev = Fetch.srcrev_internal_helper(ud, d) | 72 | rev = Fetch.srcrev_internal_helper(ud, d) |
