Merge pull request #288 from aforemny/dev

Relax mtime test in alreadyCompiled
This commit is contained in:
Evan Czaplicki 2013-10-09 10:25:43 -07:00
commit 15aec26799

View file

@ -118,7 +118,7 @@ buildFile flags moduleNum numModules interfaces filePath =
then return False
else do tsrc <- getModificationTime filePath
tint <- getModificationTime (elmo flags filePath)
return (tsrc < tint)
return (tsrc <= tint)
number :: String
number = "[" ++ show moduleNum ++ " of " ++ show numModules ++ "]"