<div dir="ltr">I had to add the following patch to make the install work.<div><br></div><div>diff --git a/configure.py b/configure.py<br>index d23e80859a..2d80765e25 100644<br>--- a/configure.py<br>+++ b/configure.py<br>@@ -404,7 +404,7 @@ def create_makefiles(macros):<br>             # There will only be one element.<br>             files, path = gen_installs[0]<br>             pro.write("\n")<br>-            pro.write("sip_h.files = %s\n" % " ".join(files))<br>+            pro.write("sip_h.files = %s\n" % "".join(files))<br>             pro.write("sip_h.path = %s\n" % quote(path))<br>             pro.write("INSTALLS += sip_h\n")<br> <br></div></div>