diff options
Diffstat (limited to 'buildtools/autotools/autoprojectpart.cpp')
-rw-r--r-- | buildtools/autotools/autoprojectpart.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/buildtools/autotools/autoprojectpart.cpp b/buildtools/autotools/autoprojectpart.cpp index 21df4fd8..279102e4 100644 --- a/buildtools/autotools/autoprojectpart.cpp +++ b/buildtools/autotools/autoprojectpart.cpp @@ -699,7 +699,7 @@ TQString AutoProjectPart::constructMakeCommandLine(const TQString &dir, const TQ cmdline.prepend(makeEnvironment()); TQString dircmd = "cd "; - dircmd += KProcess::quote(dir); + dircmd += TDEProcess::quote(dir); dircmd += " && "; return preCommand + dircmd + cmdline; @@ -968,13 +968,13 @@ TQString AutoProjectPart::configureCommand() const // if the build directory doesn't exist, add it's creation to the configureCommand if ( !TQFile::exists(builddir)) { dircmd = "mkdir "; - dircmd += KProcess::quote(builddir); + dircmd += TDEProcess::quote(builddir); dircmd += " && "; } // add "cd into the build directory" to the configureCommand dircmd += "cd "; - dircmd += KProcess::quote(builddir); + dircmd += TDEProcess::quote(builddir); dircmd += " && "; return dircmd + cmdline; @@ -1024,7 +1024,7 @@ TQString AutoProjectPart::makefileCvsCommand() const cmdline.prepend(makeEnvironment()); TQString dircmd = "cd "; - dircmd += KProcess::quote(topsourceDirectory()); + dircmd += TDEProcess::quote(topsourceDirectory()); dircmd += " && "; TQString admin_directory_update_command = updateAdminDirectoryCommand(); @@ -1060,7 +1060,7 @@ TQString AutoProjectPart::makefileCopySystemLibtoolCommand() const cmdline.prepend(makeEnvironment()); TQString dircmd = "cd "; - dircmd += KProcess::quote(topsourceDirectory()); + dircmd += TDEProcess::quote(topsourceDirectory()); dircmd += " && "; return dircmd + cmdline; @@ -1081,7 +1081,7 @@ TQString AutoProjectPart::updateAdminDirectoryCommand() const TQString cmdline = "rm -rf admin && tar -xzvf "; cmdline.append(source); TQString dircmd = "cd "; - dircmd += KProcess::quote(topsourceDirectory()); + dircmd += TDEProcess::quote(topsourceDirectory()); dircmd += " && "; return dircmd + cmdline; } @@ -1522,7 +1522,7 @@ void AutoProjectPart::startSimpleMakeCommand( const TQString & dir, const TQStri cmdline.prepend(makeEnvironment()); TQString dircmd = "cd "; - dircmd += KProcess::quote(dir); + dircmd += TDEProcess::quote(dir); dircmd += " && "; m_buildCommand = dircmd + cmdline; |