changeset 37 | 758a864f9613 |
parent 33 | 3e2da88830cd |
--- a/qmake/generators/win32/mingw_make.cpp Fri Sep 17 08:34:18 2010 +0300 +++ b/qmake/generators/win32/mingw_make.cpp Mon Oct 04 01:19:32 2010 +0300 @@ -197,10 +197,7 @@ QTextStream t(&file); t << "CREATE " << target << endl; for (QStringList::ConstIterator it = objList.constBegin(); it != objList.constEnd(); ++it) { - if (QDir::isRelativePath(*it)) - t << "ADDMOD " << *it << endl; - else - t << *it << endl; + t << "ADDMOD " << *it << endl; } t << "SAVE" << endl; t.flush();