summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-04-27 11:20:24 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-04-27 11:20:24 +0000
commit91e4ef14fc1858c4f49ca65d29fe41339fe2bdbd (patch)
tree431932ac6c0677d3e633d3148ea1a5cbfc0b3858
parent39304af2d2d33ec5bf00b4f05e9a67ee36c0f035 (diff)
downloadbitbake-91e4ef14fc1858c4f49ca65d29fe41339fe2bdbd.tar.gz
trunk cvs.py: Sync with 1.8 branch
-rw-r--r--lib/bb/fetch/cvs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/cvs.py b/lib/bb/fetch/cvs.py
index 01acc3f78..c4ccf4303 100644
--- a/lib/bb/fetch/cvs.py
+++ b/lib/bb/fetch/cvs.py
@@ -118,7 +118,7 @@ class Cvs(Fetch):
if 'norecurse' in ud.parm:
options.append("-l")
if ud.date:
- options.append("-D %s" % ud.date)
+ options.append("-D \"%s UTC\"" % ud.date)
if ud.tag:
options.append("-r %s" % ud.tag)