From: michaelw Date: Wed, 26 Jul 2000 18:11:06 +0000 (+0000) Subject: [project @ 2000-07-26 18:11:06 by michaelw] X-Git-Tag: Approximately_9120_patches~3940 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=87ac3f7160d44a2521fe7d15a8b0452f1a313a58;p=ghc-hetmet.git [project @ 2000-07-26 18:11:06 by michaelw] added newline at EOF of package files --- diff --git a/ghc/driver/PackageSrc.hs b/ghc/driver/PackageSrc.hs index c8a1840..8c3e859 100644 --- a/ghc/driver/PackageSrc.hs +++ b/ghc/driver/PackageSrc.hs @@ -9,8 +9,8 @@ main :: IO () main = do args <- getArgs case args of - [ "install" ] -> do { putStr (dumpPackages (package_details True)) } - [ "in-place" ] -> do { putStr (dumpPackages (package_details False)) } + [ "install" ] -> do { putStrLn (dumpPackages (package_details True)) } + [ "in-place" ] -> do { putStrLn (dumpPackages (package_details False)) } _ -> do hPutStr stderr "usage: pkgconf (install | in-place)\n" exitWith (ExitFailure 1)