[yocto] [opkg-utils PATCH] opkg.py: Fix run-time error in call to ArFile

Jeffrey Pautler jeffrey.pautler at ni.com
Mon Oct 2 12:37:54 PDT 2017


Signed-off-by: Jeffrey Pautler <jeffrey.pautler at ni.com>
---
opkg.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opkg.py b/opkg.py
index 4d6f020..9131755 100644
--- a/opkg.py
+++ b/opkg.py
@@ -168,7 +168,7 @@ class Package(object):
                 tar = tarfile.open(fn, "r", f)
                 tarStream = tar.extractfile("./control.tar.gz")
             else:
-                ar = ArFile(f, fn)
+                ar = arfile.ArFile(f, fn)
                 tarStream = ar.open("control.tar.gz")
             tarf = tarfile.open("control.tar.gz", "r", tarStream)
             try:
--
2.7.4
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.yoctoproject.org/pipermail/yocto/attachments/20171002/b0baa3b8/attachment.html>


More information about the yocto mailing list