summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2007-01-06 19:48:12 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2007-01-06 19:48:12 +0000
commit832ff63403cd205bfa8076aec4d65fed4ec4e33c (patch)
tree7d568c288c8f6425c00a542970118eb57fb0d252
parentfe80d7a32bcc886f97bd08860ce39fa1f0b0928b (diff)
downloadbitbake-832ff63403cd205bfa8076aec4d65fed4ec4e33c.tar.gz
Make cvs_port a string and an empty one as well. This should fix the concatination error koen was seeing and describing in #1753
-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 04d9e4c77..58967eb7f 100644
--- a/lib/bb/fetch/cvs.py
+++ b/lib/bb/fetch/cvs.py
@@ -118,7 +118,7 @@ class Cvs(Fetch):
else:
localdir = module
- cvs_port = 2401
+ cvs_port = ""
if "port" in parm:
cvs_port = parm["port"]