From 15a7e6ba3725b6f32ddb0f8b099c4d13808cb989 Mon Sep 17 00:00:00 2001 From: qrczak Date: Mon, 28 May 2001 17:34:24 +0000 Subject: [PATCH] [project @ 2001-05-28 17:34:24 by qrczak] Fix removing temporary files. --- ghc/compiler/main/TmpFiles.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/main/TmpFiles.hs b/ghc/compiler/main/TmpFiles.hs index b693d59..b89e77e 100644 --- a/ghc/compiler/main/TmpFiles.hs +++ b/ghc/compiler/main/TmpFiles.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: TmpFiles.hs,v 1.19 2001/05/28 03:31:19 sof Exp $ +-- $Id: TmpFiles.hs,v 1.20 2001/05/28 17:34:24 qrczak Exp $ -- -- Temporary file management -- @@ -90,7 +90,7 @@ removeTmpFiles verb fs = do #if defined(mingw32_TARGET_OS) && defined(MINIMAL_UNIX_DEPS) then kludgedSystem (cRM ++ ' ':dosifyPath f) "Cleaning temp files" >> return () #else - then kludgedSystem (cRM ++ f) "Cleaning temp files" >> return () + then kludgedSystem (cRM ++ ' ':f) "Cleaning temp files" >> return () #endif else removeFile f) `catchAllIO` -- 1.7.10.4