[oe-commits] [bitbake] 22/22: bb.fetch2.svn: correctly pass workdir when fetching

git at git.openembedded.org git at git.openembedded.org
Fri Sep 2 17:11:22 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

commit dc756510a95f88b192352be6fcd1d5d77852c348
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