diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-19 16:15:24 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-19 16:15:24 -0800 |
commit | 08ce073de596e452a79008a1d653799f1149e888 (patch) | |
tree | 631b28071e80ba4063abb0dcb3dcbc089ace5e6a | |
parent | e3ccff1f2d2762bd0fb710f44b53a7ea46604c51 (diff) | |
download | pandoc-08ce073de596e452a79008a1d653799f1149e888.tar.gz |
Removed unneeded -dno-debug-output from ghc-options
-rw-r--r-- | pandoc.cabal | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 90f469c2f..657415b1c 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -236,10 +236,10 @@ Library template-haskell >= 2.4 && < 2.9 cpp-options: -DEMBED_DATA_FILES if impl(ghc >= 7.0.1) - Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind else if impl(ghc >= 6.12) - Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind else Ghc-Options: -O2 -Wall if impl(ghc >= 7.0.1) @@ -315,10 +315,10 @@ Executable pandoc HTTP >= 4000.0.5 && < 4000.3, citeproc-hs >= 0.3.6 && < 0.4 if impl(ghc >= 7.0.1) - Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind else if impl(ghc >= 6.12) - Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind else Ghc-Options: -O2 -Wall if impl(ghc >= 7.0.1) @@ -383,10 +383,10 @@ Test-Suite test-pandoc Tests.Writers.Markdown Tests.Writers.LaTeX if impl(ghc >= 7.0.1) - Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind else if impl(ghc >= 6.12) - Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind else Ghc-Options: -O2 -Wall if impl(ghc >= 7) @@ -406,10 +406,10 @@ benchmark benchmark-pandoc criterion >= 0.5 && < 0.7, json >= 0.4 && < 0.8 if impl(ghc >= 7.0.1) - Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind else if impl(ghc >= 6.12) - Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output + Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind else Ghc-Options: -O2 -Wall Default-Language: Haskell98 |