diff options
| author | Thomas Hallgren <th-github@altocumulus.org> | 2019-01-16 14:42:34 +0100 |
|---|---|---|
| committer | Thomas Hallgren <th-github@altocumulus.org> | 2019-01-16 14:42:34 +0100 |
| commit | 5fe963dd023c59d3084262bb17f8b53b093aa1ed (patch) | |
| tree | ca47a754e881c5b963bea3f2c7aa1a21a634c374 | |
| parent | f32d222e7120b2cdbcf7959f2230d01588ee1aa0 (diff) | |
Fix compilation with ghc-7.10
NoMonadFailDesugaring is not supported by ghc-7.10, but it is only needed
with ghc>=8.6
| -rw-r--r-- | gf.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -97,8 +97,8 @@ Library --if impl(ghc>=7.8) -- ghc-options: +RTS -A20M -RTS ghc-prof-options: -fprof-auto - extensions: - NoMonadFailDesugaring + if impl(ghc>=8.6) + Default-extensions: NoMonadFailDesugaring exposed-modules: PGF |
