[oe-commits] [bitbake] 02/02: svn fetcher: allow "svn propget svn:externals" to fail

git at git.openembedded.org git at git.openembedded.org
Wed Sep 18 17:04:15 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository bitbake.

commit 238636f033cbf18e5741f0ea0e64db40e84f5838
Author: Mikko Rapeli <mikko.rapeli at bmw.de>
AuthorDate: Mon Sep 16 10:14:50 2019 +0300

    svn fetcher: allow "svn propget svn:externals" to fail
    
    Not all servers and repositories have this property set
    which results in failures like this when actual svn checkout
    command succeeded:
    
    svn: warning: W200017: Property 'svn:externals' not found on ''
    svn: E200000: A problem occurred; see other errors for details
    
    Signed-off-by: Mikko Rapeli <mikko.rapeli at bmw.de>
    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 59ce931..96d666b 100644
--- a/lib/bb/fetch2/svn.py
+++ b/lib/bb/fetch2/svn.py
@@ -145,7 +145,7 @@ class Svn(FetchMethod):
 
             if not ("externals" in ud.parm and ud.parm["externals"] == "nowarn"):
                 # Warn the user if this had externals (won't catch them all)
-                output = runfetchcmd("svn propget svn:externals", d, workdir=ud.moddir)
+                output = runfetchcmd("svn propget svn:externals || true", d, workdir=ud.moddir)
                 if output:
                     if "--ignore-externals" in svnfetchcmd.split():
                         bb.warn("%s contains svn:externals." % ud.url)

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


More information about the Openembedded-commits mailing list