make-pandoc-man-pages: Use MIN_VERSION macro rather than checking GHC version.
This is more reliable, since directory 1.2.0.1 can be used with GHC < 1.7.6.
This commit is contained in:
parent
b3ad94bde9
commit
b808655b2b
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ modifiedDependencies :: FilePath -> [FilePath] -> IO [FilePath]
|
|||
modifiedDependencies file dependencies = do
|
||||
fileModTime <- catch (getModificationTime file) $
|
||||
\e -> if isDoesNotExistError e
|
||||
#if __GLASGOW_HASKELL__ >= 706
|
||||
#if MIN_VERSION_directory(1,2,0)
|
||||
then return (UTCTime (toEnum 0) 0) -- the minimum ClockTime
|
||||
#else
|
||||
then return (TOD 0 0) -- the minimum ClockTime
|
||||
|
|
Loading…
Add table
Reference in a new issue