[oe-commits] [openembedded-core] 02/27: python2-manifest: Add missing xmlrpclib.py

git at git.openembedded.org git at git.openembedded.org
Thu Jan 31 23:24:45 UTC 2019


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

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

commit e203b71b06df1e7d73fa300d45c428008a190d00
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Jan 31 16:28:55 2019 +0000

    python2-manifest: Add missing xmlrpclib.py
    
    The manifest creation bug that was masking this file was fixed, rerun and add
    the missing file to fix:
    
      File "/usr/lib64/python2.7/SimpleXMLRPCServer.py", line 102, in <module>
        import xmlrpclib
    ImportError: No module named xmlrpclib
    
    [YOCTO #12814]
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/python/python/python2-manifest.json | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
index 4fff54a..81f1c24 100644
--- a/meta/recipes-devtools/python/python/python2-manifest.json
+++ b/meta/recipes-devtools/python/python/python2-manifest.json
@@ -1122,7 +1122,8 @@
         ], 
         "files": [
             "${libdir}/python2.7/DocXMLRPCServer.py", 
-            "${libdir}/python2.7/SimpleXMLRPCServer.py"
+            "${libdir}/python2.7/SimpleXMLRPCServer.py", 
+            "${libdir}/python2.7/xmlrpclib.py"
         ]
     }, 
     "zlib": {

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


More information about the Openembedded-commits mailing list