summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/precise/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff')
-rw-r--r--ubuntu/precise/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff18
1 files changed, 18 insertions, 0 deletions
diff --git a/ubuntu/precise/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff b/ubuntu/precise/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
new file mode 100644
index 000000000..a9d580737
--- /dev/null
+++ b/ubuntu/precise/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
@@ -0,0 +1,18 @@
+Index: sip4-qt3-4.10/siputils.py
+===================================================================
+--- sip4-qt3-4.10.orig/siputils.py 2010-01-26 23:45:34.144734105 +0100
++++ sip4-qt3-4.10/siputils.py 2010-01-26 23:46:51.605699383 +0100
+@@ -1546,9 +1546,12 @@
+ mfile.write("\n$(OFILES): $(HFILES)\n")
+
+ for mf in self._build["tqmoc_headers"].split():
+- root, discard = os.path.splitext(mf)
++ root, _ = os.path.splitext(mf)
+ cpp = "tqmoc_" + root + ".cpp"
+
++ if self._src_dir != self.dir:
++ mf = os.path.join(self._src_dir, mf)
++
+ mfile.write("\n%s: %s\n" % (cpp, mf))
+ mfile.write("\t$(TQMOC) -o %s %s\n" % (cpp, mf))
+