From patchwork Wed Sep 19 14:04:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] cvs fetcher Date: Wed, 19 Sep 2012 14:04:55 -0000 From: Jate Sujjavanich X-Patchwork-Id: 36921 Message-Id: <6C2434209962DC46B88345CA85C334A20183E5A9859A@Courier.syntech.org> To: "'bitbake-devel@lists.linuxtogo.org'" While using a newer bitbake, I ran into some issues with a recipe that has a cvs SRC_URI. This patch fixes it, and I wanted to submit it for further review. The localdata variable was removed but is required later in the download function. Add an extra space so that cvscmd's parameter is separated from the command. Signed-off-by: Jate Sujjavanich ----------------------------- lib/bb/fetch2/cvs.py ---------------------------- diff --git a/lib/bb/fetch2/cvs.py b/lib/bb/fetch2/cvs.py index 6a948c4..5249d85 100644 --- a/lib/bb/fetch2/cvs.py +++ b/lib/bb/fetch2/cvs.py @@ -111,8 +111,10 @@ if ud.tag: options.append("-r %s" % ud.tag) + localdata = data.createCopy(d) + cvsbasecmd = d.getVar("FETCHCMD_cvs", True) - cvscmd = cvsbasecmd + "'-d" + cvsroot + "' co " + " ".join(options) + " " + ud.module + cvscmd = cvsbasecmd + " " + "'-d" + cvsroot + "' co " + " ".join(options) + " " + ud.module cvsupdatecmd = cvsbasecmd + "'-d" + cvsroot + "' update -d -P " + " ".join(options) if cvs_rsh: