From: Richard Purdie Date: Thu, 20 Sep 2012 10:34:18 +0000 (+0100) Subject: fetch2/cvs: Fix parameter spacing X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55382f0aac84b8f81cad0b82053c0b8295c33e54;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git fetch2/cvs: Fix parameter spacing Add in misssing space between the parameters. Reported by Jate Sujjavanich . Signed-off-by: Richard Purdie --- diff --git a/lib/bb/fetch2/cvs.py b/lib/bb/fetch2/cvs.py index 0a014d1e9e9..0a672a33efb 100644 --- a/lib/bb/fetch2/cvs.py +++ b/lib/bb/fetch2/cvs.py @@ -111,8 +111,8 @@ class Cvs(FetchMethod): options.append("-r %s" % ud.tag) cvsbasecmd = d.getVar("FETCHCMD_cvs", True) - cvscmd = cvsbasecmd + "'-d" + cvsroot + "' co " + " ".join(options) + " " + ud.module - cvsupdatecmd = cvsbasecmd + "'-d" + cvsroot + "' update -d -P " + " ".join(options) + cvscmd = cvsbasecmd + " '-d" + cvsroot + "' co " + " ".join(options) + " " + ud.module + cvsupdatecmd = cvsbasecmd + " '-d" + cvsroot + "' update -d -P " + " ".join(options) if cvs_rsh: cvscmd = "CVS_RSH=\"%s\" %s" % (cvs_rsh, cvscmd)