summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-04-01 13:26:02 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-04-02 16:57:39 +0900
commit2fd95788caf41ca769bb652cf3bde339a0a7b226 (patch)
treedc651fb5218e3c94ab2db117c12b2770d3d3a523 /ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
parentc010a8f03872449853aebb2afa1b7c8d5ac57ffb (diff)
downloadtde-packaging-2fd95788caf41ca769bb652cf3bde339a0a7b226.tar.gz
tde-packaging-2fd95788caf41ca769bb652cf3bde339a0a7b226.zip
DEB sip4-tqt: removed unused patch files
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff')
-rw-r--r--ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff18
1 files changed, 0 insertions, 18 deletions
diff --git a/ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff b/ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
deleted file mode 100644
index 3c4570b21..000000000
--- a/ubuntu/_base/dependencies/sip4-tqt/debian/patches/siputils_objdir_module_fix.diff
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: b/siputils.py
-===================================================================
---- a/siputils.py
-+++ b/siputils.py
-@@ -1547,9 +1547,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$(MOC) -o %s %s\n" % (cpp, mf))
-