diff options
author | Ian Lynagh <igloo@earth.li> | 2008-06-20 19:10:59 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-06-20 19:10:59 +0000 |
commit | d78ab147ec3d8c3b06b6e922bed4cd9837c9c797 (patch) | |
tree | d663c5a85c0907b60975de00a4f035bbbc0af7eb /compiler/main/DriverPipeline.hs | |
parent | 53ddf8f4fb12d723721ad65e47ed54582b666e41 (diff) | |
download | haskell-d78ab147ec3d8c3b06b6e922bed4cd9837c9c797.tar.gz |
Now that we require GHC >= 6.4.2, System.IO.Error is always available
Diffstat (limited to 'compiler/main/DriverPipeline.hs')
-rw-r--r-- | compiler/main/DriverPipeline.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/DriverPipeline.hs b/compiler/main/DriverPipeline.hs index a59cf4649b..b848e830e6 100644 --- a/compiler/main/DriverPipeline.hs +++ b/compiler/main/DriverPipeline.hs @@ -53,7 +53,7 @@ import GHC.Exts ( Int(..) ) import System.Directory import System.FilePath import System.IO -import SYSTEM_IO_ERROR as IO +import System.IO.Error as IO import Control.Monad import Data.List ( isSuffixOf ) import Data.Maybe |