aboutsummaryrefslogtreecommitdiff
path: root/Setup.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-07-31 23:55:27 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-07-31 23:55:27 +0000
commit8440385f45e18f43172c0cf4409cf4b8b538bbeb (patch)
tree3b839e838163800ace3bc031484d86c3e75c0e6b /Setup.hs
parent22846086c19b14a74c194ac06c1738f8bfd7fd46 (diff)
downloadpandoc-8440385f45e18f43172c0cf4409cf4b8b538bbeb.tar.gz
Compatibility fixes for CPP, Cabal, and haddock:
+ Use CPP in "Extensions" field in pandoc.cabal. + Removed use of backslash string continuations in source files. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1350 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Setup.hs')
-rw-r--r--Setup.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Setup.hs b/Setup.hs
index b7fe4f7b5..2162f9860 100644
--- a/Setup.hs
+++ b/Setup.hs
@@ -49,8 +49,8 @@ fillDefaultHeadersTemplate = do
writeTemplate :: FilePath -> String -> IO ()
writeTemplate outfile contents = do
putStrLn $ " " ++ outfile
- let warning = "-- This file is generated from a template in the templates subdirectory.\n\
- \-- Modify that file, not this one.\n"
+ let warning = "-- This file is generated from a template in the templates subdirectory.\n" ++
+ "-- Modify that file, not this one.\n"
writeFile outfile (warning ++ contents)
-- Read contents of fpath and insert in template replacing @fpath@.