-
Bug
-
Resolution: Done
-
P1: Critical
-
4.6.0, 4.6.1, 4.6.2, 4.6.3, 4.7.0
-
None
-
4ba3dadcae97bfde6216c32cfa339f8f0e0253c7
With Visual Studio 2010 and uic3 an ampersand send to echo will be interpreted as second command.
The affected lines in /Qt/qmake/generators/win32/msvc_objectmodel.cpp
// Output in info.additionalFile -----------
if (!CustomBuildTool.Description.isEmpty())
CustomBuildTool.Description += " & ";
If changed to
CustomBuildTool.Description += " + ";
everything is OK.
Does not happen with VC2008.