summaryrefslogtreecommitdiffstats
path: root/pytdeconfig.py.in
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:14:34 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:14:34 -0600
commit57e2ced52bf3ba886bb7710212167a86e20305e6 (patch)
treee08b1e82e83f5afa861dc9eeb833dc4bd593900b /pytdeconfig.py.in
parentccad7a42d96879251c4971e51aac269f61a0ccf8 (diff)
downloadpytde-57e2ced52bf3ba886bb7710212167a86e20305e6.tar.gz
pytde-57e2ced52bf3ba886bb7710212167a86e20305e6.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'pytdeconfig.py.in')
-rw-r--r--pytdeconfig.py.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/pytdeconfig.py.in b/pytdeconfig.py.in
index 9a075b1..f04957d 100644
--- a/pytdeconfig.py.in
+++ b/pytdeconfig.py.in
@@ -151,7 +151,7 @@ class KfileModuleMakefile(KioModuleMakefile):
KioModuleMakefile.finalise(self)
class KpartsModuleMakefile(KfileModuleMakefile):
- """The Makefile class for modules that %Import kparts.
+ """The Makefile class for modules that %Import tdeparts.
"""
def finalise(self):
"""Finalise the macros.
@@ -160,12 +160,12 @@ class KpartsModuleMakefile(KfileModuleMakefile):
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
self.LIBDIR.append(self.config.pyqt_mod_dir)
- self.extra_libs.append(self.module_as_lib("kparts"))
+ self.extra_libs.append(self.module_as_lib("tdeparts"))
KfileModuleMakefile.finalise(self)
class KhtmlModuleMakefile(KpartsModuleMakefile):
- """The Makefile class for modules that %Import khtml.
+ """The Makefile class for modules that %Import tdehtml.
"""
def finalise(self):
"""Finalise the macros.
@@ -174,7 +174,7 @@ class KhtmlModuleMakefile(KpartsModuleMakefile):
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
self.LIBDIR.append(self.config.pyqt_mod_dir)
- self.extra_libs.append(self.module_as_lib("khtml"))
+ self.extra_libs.append(self.module_as_lib("tdehtml"))
KpartsModuleMakefile.finalise(self)