aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-08-04 15:51:28 +0000
committerPhil Blundell <philb@gnu.org>2004-08-04 15:51:28 +0000
commite5d034881df791902dd82fe9d6901fa11f0de2bb (patch)
tree5efc36e22beaa1a40d33c95d31659d16c687339a /bin
parentec09892511a43183785ebba7230f005690d60008 (diff)
downloadbitbake-e5d034881df791902dd82fe9d6901fa11f0de2bb.tar.gz
remove special-casing of tag=HEAD
Diffstat (limited to 'bin')
-rw-r--r--bin/oe/fetch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/oe/fetch.py b/bin/oe/fetch.py
index 5463e2974..ade343ac9 100644
--- a/bin/oe/fetch.py
+++ b/bin/oe/fetch.py
@@ -266,7 +266,7 @@ class Cvs(Fetch):
if 'date' in parm:
date = parm['date']
else:
- if not tag or tag == "HEAD":
+ if not tag:
date = oe.data.getVar("CVSDATE", d, 1) or oe.data.getVar("DATE", d, 1)
else:
date = ""
@@ -312,7 +312,7 @@ class Cvs(Fetch):
if 'date' in parm:
date = parm['date']
else:
- if not tag or tag == "HEAD":
+ if not tag:
date = oe.data.getVar("CVSDATE", d, 1) or oe.data.getVar("DATE", d, 1)
else:
date = ""