[project @ 2000-07-26 18:11:06 by michaelw]
authormichaelw <unknown>
Wed, 26 Jul 2000 18:11:06 +0000 (18:11 +0000)
committermichaelw <unknown>
Wed, 26 Jul 2000 18:11:06 +0000 (18:11 +0000)
added newline at EOF of package files

ghc/driver/PackageSrc.hs

index c8a1840..8c3e859 100644 (file)
@@ -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)