aboutsummaryrefslogtreecommitdiff
path: root/src/HaddockHtml.hs
diff options
context:
space:
mode:
authorbenjamin.franksen <benjamin.franksen@bessy.de>2006-03-03 22:39:54 +0000
committerbenjamin.franksen <benjamin.franksen@bessy.de>2006-03-03 22:39:54 +0000
commit35d3c5110e7a9613651cf5e34f8ebf7040935b1b (patch)
treefe83a5217269c9c64e8b8d7f61ccf08f08d3026f /src/HaddockHtml.hs
parentf86fb9c0078eb9229799dbc5a755b7fa6dbfe11f (diff)
fixed libdir (/html was missing)
Diffstat (limited to 'src/HaddockHtml.hs')
-rw-r--r--src/HaddockHtml.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/HaddockHtml.hs b/src/HaddockHtml.hs
index 272d2ea6..c8561491 100644
--- a/src/HaddockHtml.hs
+++ b/src/HaddockHtml.hs
@@ -120,12 +120,13 @@ copyFile fromFPath toFPath =
copyHtmlBits :: FilePath -> FilePath -> Maybe FilePath -> IO ()
copyHtmlBits odir libdir maybe_css = do
let
+ libhtmldir = pathJoin [libdir, "html"]
css_file = case maybe_css of
- Nothing -> pathJoin [libdir, cssFile]
+ Nothing -> pathJoin [libhtmldir, cssFile]
Just f -> f
css_destination = pathJoin [odir, cssFile]
copyLibFile f = do
- copyFile (pathJoin [libdir, f]) (pathJoin [odir, f])
+ copyFile (pathJoin [libhtmldir, f]) (pathJoin [odir, f])
copyFile css_file css_destination
mapM_ copyLibFile [ iconFile, plusFile, minusFile, jsFile ]