aboutsummaryrefslogtreecommitdiff
path: root/Setup.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-08-10 22:25:04 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-08-10 22:25:04 +0000
commitac28fa29d348b801033fd813e33ebceff2699300 (patch)
tree31e911bd8af0e0d7dfdae841aa1505f0eae69514 /Setup.hs
parent2fd7da07d4f044364609f42d8b8f799340960923 (diff)
downloadpandoc-ac28fa29d348b801033fd813e33ebceff2699300.tar.gz
Use -S option when building man pages in Setup.hs.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1400 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Setup.hs')
-rw-r--r--Setup.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Setup.hs b/Setup.hs
index da748b0a8..67d9ae7ad 100644
--- a/Setup.hs
+++ b/Setup.hs
@@ -63,7 +63,7 @@ makeManPage manpage = do
if null modifiedDeps
then return ()
else do
- ec <- runProcess pandoc ["-s", "-r", "markdown", "-w", "man", "-o", page, source]
+ ec <- runProcess pandoc ["-s", "-S", "-r", "markdown", "-w", "man", "-o", page, source]
Nothing Nothing Nothing Nothing (Just stderr) >>= waitForProcess
case ec of
ExitSuccess -> putStrLn $ "Created " ++ manDir </> manpage