Bläddra i källkod

* fixed comparing ppu time with source time (bug 10443)

git-svn-id: trunk@9776 -
Vincent Snijders 17 år sedan
förälder
incheckning
9de3695061
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      compiler/fppu.pas

+ 1 - 1
compiler/fppu.pas

@@ -765,7 +765,7 @@ uses
                     main_dir:=ExtractFilePath(hs);
                     main_dir:=ExtractFilePath(hs);
                   temp:=' time '+filetimestring(source_time);
                   temp:=' time '+filetimestring(source_time);
                   if (orgfiletime<>-1) and
                   if (orgfiletime<>-1) and
-                     (source_time<>orgfiletime) then
+                     (source_time>orgfiletime) then
                     begin
                     begin
                       do_compile:=true;
                       do_compile:=true;
                       recompile_reason:=rr_sourcenewer;
                       recompile_reason:=rr_sourcenewer;