remove -fglasgow-exts flag from System.Eval.Utils.getPath

This commit is contained in:
Jeremy Shaw 2013-10-03 18:38:41 +00:00
parent 92e57e95ff
commit 08f4a08a08

View File

@ -71,7 +71,7 @@ escape s = concatMap (\c -> showLitChar c $ "") s
-- --
getPaths :: IO ([String],[String]) getPaths :: IO ([String],[String])
getPaths = do getPaths = do
let make_line = ["-O0","-fglasgow-exts","-package","plugins"] let make_line = ["-O0","-package","plugins"]
return (make_line,[]) return (make_line,[])
-- --------------------------------------------------------------------- -- ---------------------------------------------------------------------