From: qrczak Date: Mon, 18 Dec 2000 20:42:14 +0000 (+0000) Subject: [project @ 2000-12-18 20:42:14 by qrczak] X-Git-Tag: Approximately_9120_patches~3071 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b9b1dfb0c3fde8c197efebdca0a9cd14f0811f05;p=ghc-hetmet.git [project @ 2000-12-18 20:42:14 by qrczak] Fix the order of arguments to kludgedSystem. --- diff --git a/ghc/compiler/main/PackageMaintenance.hs b/ghc/compiler/main/PackageMaintenance.hs index 06804f5..bd296d4 100644 --- a/ghc/compiler/main/PackageMaintenance.hs +++ b/ghc/compiler/main/PackageMaintenance.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: PackageMaintenance.hs,v 1.5 2000/12/12 14:35:08 simonmar Exp $ +-- $Id: PackageMaintenance.hs,v 1.6 2000/12/18 20:42:14 qrczak Exp $ -- -- GHC Driver program -- @@ -81,7 +81,7 @@ maybeRestoreOldConfig conf_file io hPutStr stdout "\nWARNING: an error was encountered while the new \n\ \configuration was being written. Attempting to \n\ \restore the old configuration... " - kludgedSystem "Restoring old configuration" ("cp " ++ conf_file ++ ".old " ++ conf_file) + kludgedSystem ("cp " ++ conf_file ++ ".old " ++ conf_file) "Restoring old configuration" hPutStrLn stdout "done." throw e ) @@ -101,7 +101,7 @@ savePackageConfig conf_file = do -- mv rather than cp because we've already done an hGetContents -- on this file so we won't be able to open it for writing -- unless we move the old one out of the way... - kludgedSystem "Saving package configuration" ("mv " ++ conf_file ++ " " ++ conf_file ++ ".old") + kludgedSystem ("mv " ++ conf_file ++ " " ++ conf_file ++ ".old") "Saving package configuration" hPutStrLn stdout "done." -----------------------------------------------------------------------------