diff options
| author | krasimir <krasimir@chalmers.se> | 2009-10-15 06:44:40 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2009-10-15 06:44:40 +0000 |
| commit | 93da32c1d43945c709fadf3fcaaedef369cc8046 (patch) | |
| tree | c69080455c458de3321f26ff4321b41d2f576531 /Setup.hs | |
| parent | 624b1075d9be8ed577c62b08a45320b571d849ed (diff) | |
bugfix in Setup.hs for Linux
Diffstat (limited to 'Setup.hs')
| -rw-r--r-- | Setup.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -111,7 +111,7 @@ copyRGL args flags pkg lbi = do copyAll s from to = do putStrLn $ "Installing [" ++ s ++ "] " ++ to createDirectoryIfMissing True to - files <- fmap (drop 2) $ getDirectoryContents from + files <- fmap (filter (\f -> take 1 f /= ".")) $ getDirectoryContents from mapM_ (\file -> copyFile (from </> file) (to </> file)) files sdistRGL pkg mb_lbi hooks flags = do |
