Don't use infix call for type ctor

This commit is contained in:
Nikolay Yakimov 2015-07-02 13:19:57 +03:00
parent 1efacbef88
commit de5ff87f19

View File

@ -179,7 +179,8 @@ runGmlTWith efnmns' mdf wrapper action = do
where where
relativize (Target (TargetFile filePath phase) taoc src) = do relativize (Target (TargetFile filePath phase) taoc src) = do
crdl <- cradle crdl <- cradle
let tid = makeRelative (cradleRootDir crdl) filePath `TargetFile` phase let tid = TargetFile relativeFilePath phase
relativeFilePath = makeRelative (cradleRootDir crdl) filePath
return $ Target tid taoc src return $ Target tid taoc src
relativize tgt = return tgt relativize tgt = return tgt