summaryrefslogtreecommitdiffstats
path: root/siputils.py
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-03 19:26:12 -0600
committerTimothy Pearson <[email protected]>2011-12-03 19:26:12 -0600
commitacd46151c0cea75953919358cd4094e7e0fb4aa3 (patch)
tree867212bb831ef4dec3afb13570bf0f9b5e2096ec /siputils.py
parent7204ed83ef42087a0dc056e51cc21983428b1645 (diff)
downloadsip4-tqt-acd46151c0cea75953919358cd4094e7e0fb4aa3.tar.gz
sip4-tqt-acd46151c0cea75953919358cd4094e7e0fb4aa3.zip
Fix later FTBFS in python-tqt
Diffstat (limited to 'siputils.py')
-rw-r--r--siputils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/siputils.py b/siputils.py
index 2df75af..17935ba 100644
--- a/siputils.py
+++ b/siputils.py
@@ -1056,7 +1056,7 @@ class Makefile:
mfile.write("LIBS = %s\n" % ' '.join(libs))
if self._qt:
- mfile.write("TQMOC = %s\n" % _quote(self.required_string("TQMOC")))
+ mfile.write("MOC = %s\n" % _quote(self.required_string("MOC")))
if self._src_dir != self.dir:
mfile.write("VPATH = %s\n\n" % self._src_dir)
@@ -1541,7 +1541,7 @@ class ModuleMakefile(Makefile):
cpp = "tqmoc_" + root + ".cpp"
mfile.write("\n%s: %s\n" % (cpp, mf))
- mfile.write("\t$(TQMOC) -o %s %s\n" % (cpp, mf))
+ mfile.write("\t$(MOC) -o %s %s\n" % (cpp, mf))
mfile.write("\n$(TARGET): $(OFILES)\n")
@@ -1833,7 +1833,7 @@ class ProgramMakefile(Makefile):
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))
+ mfile.write("\t$(MOC) -o %s %s\n" % (cpp, mf))
mfile.write("\n$(TARGET): $(OFILES)\n")