On Mon, 6 Oct 2008, Richard wrote:
> Ok! Thanks for the feedback, we'll look into it!
Specifically, I replaced
// Get the qt path from one of the Qt frameworks;
if (deploymenInfo.qtPath == QString() &&
framework.frameworkName.contains("Qt")
&& framework.frameworkDirectory.contains("/lib")
&& framework.frameworkDirectory.startsWith("/usr") == false) //
libQt* from binary package
{
deploymenInfo.qtPath = framework.frameworkDirectory;
deploymenInfo.qtPath.chop(5); // remove "/lib/"
}
with
// Get the qt path from one of the Qt frameworks;
if (deploymenInfo.qtPath == QString() &&
framework.frameworkName.contains("Qt")
&& framework.frameworkDirectory.contains("/lib") )
// && framework.frameworkDirectory.startsWith("/usr") == false) //
libQt* from binary package
{
deploymenInfo.qtPath = framework.frameworkDirectory;
deploymenInfo.qtPath.chop(5); // remove "/lib/"
}
Boudewijn
_______________________________________________
Qt4-preview-feedback mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt4-preview-feedback