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
This commit is contained in:
fiddlosopher
2008-08-10 22:25:04 +00:00
parent 2fd7da07d4
commit ac28fa29d3
+1 -1
View File
@@ -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