qmake/generators/symbian/symmake_sbsv2.cpp
changeset 22 79de32ba3296
parent 19 fcece45ef507
child 30 5dc02b23752f
--- a/qmake/generators/symbian/symmake_sbsv2.cpp	Mon May 03 13:17:34 2010 +0300
+++ b/qmake/generators/symbian/symmake_sbsv2.cpp	Fri May 14 16:40:13 2010 +0300
@@ -75,7 +75,7 @@
 
         foreach(QFileInfo item, sourceInfos) {
             QFileInfo destInfo = QFileInfo(destDir.absolutePath() + "/" + item.fileName());
-            if (!destInfo.exists() || destInfo.lastModified() < item.lastModified()) {
+            if (!destInfo.exists() || destInfo.lastModified() != item.lastModified()) {
                 if (destInfo.exists())
                     QFile::remove(destInfo.absoluteFilePath());
                 if (QFile::copy(item.absoluteFilePath(), destInfo.absoluteFilePath())) {