Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tobias Decking
GHC
Commits
22b39e40
Commit
22b39e40
authored
Oct 18, 2006
by
Ian Lynagh
Browse files
Fix the build with GHC 6.2.2
parent
4287edeb
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/main/SysTools.lhs
View file @
22b39e40
...
...
@@ -51,7 +51,6 @@ import Data.IORef
import Data.Int
import Control.Monad
import System.Exit
import System.Cmd
import System.Environment
import System.IO
import SYSTEM_IO_ERROR as IO
...
...
@@ -82,9 +81,11 @@ import Text.Regex
#if __GLASGOW_HASKELL__ < 603
-- rawSystem comes from libghccompat.a in stage1
import Compat.RawSystem ( rawSystem )
import Compat.RawSystem ( rawSystem )
import System.Cmd ( system )
import GHC.IOBase ( IOErrorType(..) )
#else
import System.Cmd ( rawSystem, system )
import System.Process ( runInteractiveProcess, getProcessExitCode )
import Control.Concurrent( forkIO, newChan, readChan, writeChan )
import Data.Char ( isSpace )
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment