[oe-commits] [openembedded-core] 01/73: buildhistory-collect-srcrevs: Fix multiple SRCREV definitions

git at git.openembedded.org git at git.openembedded.org
Fri Oct 28 10:28:25 UTC 2016


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

commit abcb6efb6af2b2f31a12c373f8fcabce71d305c0
Author: Tobias Hagelborn <tobiasha at axis.com>
AuthorDate: Wed Oct 19 13:34:28 2016 +0200

    buildhistory-collect-srcrevs: Fix multiple SRCREV definitions
    
    Fixed copy & paste error causing error when extracting SRCREV
    for packages containing multiple SRCREV definitons.
    
    Signed-off-by: Tobias Hagelborn <tobias.hagelborn at axis.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/buildhistory-collect-srcrevs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/buildhistory-collect-srcrevs b/scripts/buildhistory-collect-srcrevs
index 8a03580..d375b04 100755
--- a/scripts/buildhistory-collect-srcrevs
+++ b/scripts/buildhistory-collect-srcrevs
@@ -101,7 +101,7 @@ def main():
                 for name, value in srcrevs.items():
                     orig = orig_srcrevs.get(name, orig_srcrev)
                     if options.reportall or value != orig:
-                        all_srcrevs[curdir].append((pn, name, srcrev))
+                        all_srcrevs[curdir].append((pn, name, value))
 
     for curdir, srcrevs in sorted(all_srcrevs.items()):
         if srcrevs:

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


More information about the Openembedded-commits mailing list