[PyQt] Patch file

Kyle kylesulek at gmail.com
Fri Jul 12 03:59:47 BST 2019


I had to add the following patch to make the install work.

diff --git a/configure.py b/configure.py
index d23e80859a..2d80765e25 100644
--- a/configure.py
+++ b/configure.py
@@ -404,7 +404,7 @@ def create_makefiles(macros):
             # There will only be one element.
             files, path = gen_installs[0]
             pro.write("\n")
-            pro.write("sip_h.files = %s\n" % " ".join(files))
+            pro.write("sip_h.files = %s\n" % "".join(files))
             pro.write("sip_h.path = %s\n" % quote(path))
             pro.write("INSTALLS += sip_h\n")
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://www.riverbankcomputing.com/pipermail/pyqt/attachments/20190711/27510adf/attachment.html>


More information about the PyQt mailing list