diff options
Diffstat (limited to 'pytdeconfig.py.in')
-rw-r--r-- | pytdeconfig.py.in | 8 |
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) |