aboutsummaryrefslogtreecommitdiff
path: root/Setup.hs
diff options
context:
space:
mode:
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@.