[oe-commits] [bitbake] 02/02: fetch2: Print SCMs list when SRCREV_FORMAT is not set

git at git.openembedded.org git at git.openembedded.org
Thu Mar 21 23:42:53 UTC 2019


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

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

commit 313fe5e86b254eadfdead706be4bd7b274d5e3c0
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Mar 14 17:28:19 2019 +0800

    fetch2: Print SCMs list when SRCREV_FORMAT is not set
    
    This makes it easier to debug, especially when multipe SCMs like gitsm,
    otherwise we don't know why there are multiple SCMs.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/fetch2/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index f5a5928..26ad388 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -777,7 +777,8 @@ def get_srcrev(d, method_name='sortable_revision'):
     #
     format = d.getVar('SRCREV_FORMAT')
     if not format:
-        raise FetchError("The SRCREV_FORMAT variable must be set when multiple SCMs are used.")
+        raise FetchError("The SRCREV_FORMAT variable must be set when multiple SCMs are used.\n"\
+                         "The SCMs are:\n%s" % '\n'.join(scms))
 
     name_to_rev = {}
     seenautoinc = False

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


More information about the Openembedded-commits mailing list