Don't pass QtVersion::mkspec() to the building of debugging helpers.

Instead simply pass -mkspec default, which has the same effect.
Fixes a bug with qws mkspecs
This commit is contained in:
dt
2009-11-02 17:25:10 +01:00
parent 7dc399d678
commit 835d522ac2
3 changed files with 5 additions and 5 deletions

View File

@@ -1410,7 +1410,7 @@ QString QtVersion::buildDebuggingHelperLibrary()
QString output;
QString directory = DebuggingHelperLibrary::copyDebuggingHelperLibrary(qtInstallData, &output);
if (!directory.isEmpty())
output += DebuggingHelperLibrary::buildDebuggingHelperLibrary(directory, tc->makeCommand(), qmakeCommand(), mkspec(), env);
output += DebuggingHelperLibrary::buildDebuggingHelperLibrary(directory, tc->makeCommand(), qmakeCommand(), env);
m_hasDebuggingHelper = !debuggingHelperLibrary().isEmpty();
delete tc;
return output;