From 104c6fb889711759d093dc3861d0195c5374d902 Mon Sep 17 00:00:00 2001 From: malcolm Date: Thu, 6 Jan 2005 14:55:02 +0000 Subject: [PATCH] [project @ 2005-01-06 14:55:02 by malcolm] Remove dead branch of #elif. --- ghc/utils/hsc2hs/Main.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ghc/utils/hsc2hs/Main.hs b/ghc/utils/hsc2hs/Main.hs index aefd3f2..c2dfc20 100644 --- a/ghc/utils/hsc2hs/Main.hs +++ b/ghc/utils/hsc2hs/Main.hs @@ -1,7 +1,7 @@ {-# OPTIONS -fffi -cpp #-} ------------------------------------------------------------------------ --- $Id: Main.hs,v 1.65 2005/01/06 14:54:15 malcolm Exp $ +-- $Id: Main.hs,v 1.66 2005/01/06 14:55:02 malcolm Exp $ -- -- Program for converting .hsc files to .hs files, by converting the -- file into a C program which is run to generate the Haskell source. @@ -38,8 +38,6 @@ import CString import Compat.RawSystem ( rawSystem ) #elif __HUGS__ || __NHC__ >= 117 || __GLASGOW_HASKELL__ >= 600 import System.Cmd ( rawSystem ) -#elif BUILD_NHC && __GLASGOW_HASKELL__ >= 603 -import Compat.RawSystem ( rawSystem ) #else rawSystem prog args = system (prog++" "++unwords args) #endif -- 1.7.10.4