[oe-commits] [bitbake] branch master-next updated: bb.fetch2.svn: correctly pass workdir when fetching

git at git.openembedded.org git at git.openembedded.org
Wed Aug 31 21:41:25 UTC 2016


rpurdie pushed a commit to branch master-next
in repository bitbake.

The following commit(s) were added to refs/heads/master-next by this push:
       new  d7ea35e   bb.fetch2.svn: correctly pass workdir when fetching
d7ea35e is described below

commit d7ea35e1bda4cf82c8a8d690d77baaf3c27c91d6
Author: Christopher Larson <chris_larson at mentor.com>
AuthorDate: Wed Aug 31 12:57:08 2016 -0700

    bb.fetch2.svn: correctly pass workdir when fetching
    
    The ud.pkgdir argument was being passed as the 'quiet' argument to
    runfetchcmd, not the 'workdir' argument, resulting in fetching the svn module
    into the root of DL_DIR, not where it belongs.
    
    Cc: Matt Madison <matt at madison.systems>
    Signed-off-by: Christopher Larson <chris_larson at mentor.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/fetch2/svn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/fetch2/svn.py b/lib/bb/fetch2/svn.py
index 9ff9410..6ca79d3 100644
--- a/lib/bb/fetch2/svn.py
+++ b/lib/bb/fetch2/svn.py
@@ -141,7 +141,7 @@ class Svn(FetchMethod):
             bb.utils.mkdirhier(ud.pkgdir)
             logger.debug(1, "Running %s", svnfetchcmd)
             bb.fetch2.check_network_access(d, svnfetchcmd, ud.url)
-            runfetchcmd(svnfetchcmd, d, ud.pkgdir)
+            runfetchcmd(svnfetchcmd, d, workdir=ud.pkgdir)
 
         scmdata = ud.parm.get("scmdata", "")
         if scmdata == "keep":

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list