qmake/generators/symbian/symmake_sbsv2.cpp
branchRCL_3
changeset 14 c0432d11811c
parent 8 3f74d0d4af4c
--- a/qmake/generators/symbian/symmake_sbsv2.cpp	Wed Apr 21 12:15:23 2010 +0300
+++ b/qmake/generators/symbian/symmake_sbsv2.cpp	Wed Apr 21 20:15:53 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())) {