diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-23 21:43:25 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-23 21:43:25 +0100 |
commit | 3e401d7b2fe29713c11824542422fdce93f4890c (patch) | |
tree | 67a46f38a602856331b364b2b47591a546ad9bf8 /compiler | |
parent | b8c25820084a46b1239ad7d87bee6391dd5c1017 (diff) | |
download | haskell-3e401d7b2fe29713c11824542422fdce93f4890c.tar.gz |
Rename "GCC command" to "C compiler command"
Makes it consistent with the existing "C compiler flags"
field.
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/SysTools.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/SysTools.lhs b/compiler/main/SysTools.lhs index 656ece18b2..2529dbff48 100644 --- a/compiler/main/SysTools.lhs +++ b/compiler/main/SysTools.lhs @@ -181,7 +181,7 @@ initSysTools mbMinusB -- with the settings file, but it would be a little fiddly -- to make that possible, so for now you can't. ; gcc_prog <- if isWindowsHost then return $ installed_mingw_bin "gcc" - else getSetting "GCC command" + else getSetting "C compiler command" ; perl_path <- if isWindowsHost then return $ installed_perl_bin "perl" else getSetting "perl command" |