summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2005-12-29 15:39:24 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2005-12-29 15:39:24 +0000
commit2dd616542d773a4d2b32065f81836b7ae2a53b3f (patch)
tree4f496a987224d0fdd03fd29349be227af9c3162a
parent9049457a51b8402c3e514be1afc4a163e09b22a0 (diff)
downloadbitbake-2dd616542d773a4d2b32065f81836b7ae2a53b3f.tar.gz
bitbake/lib/bb/fetch/svn.py:
Apply patch courtsey Chris at openhand.com to make the svn fetcher honor the CVSDATE/DATE when fetching source.
-rw-r--r--lib/bb/fetch/svn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/svn.py b/lib/bb/fetch/svn.py
index 97672a38e..54d1649f5 100644
--- a/lib/bb/fetch/svn.py
+++ b/lib/bb/fetch/svn.py
@@ -146,7 +146,7 @@ class Svn(Fetch):
data.setVar('SVNCOOPTS', " ".join(options), localdata)
data.setVar('SVNMODULE', module, localdata)
svncmd = data.getVar('FETCHCOMMAND', localdata, 1)
- svncmd = "svn co %s://%s/%s" % (proto, svnroot, module)
+ svncmd = "svn co -r {%s} %s://%s/%s" % (date, proto, svnroot, module)
if revision:
svncmd = "svn co -r %s %s://%s/%s" % (revision, proto, svnroot, module)