diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2017-04-16 17:56:35 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2017-04-16 18:07:08 +0100 |
commit | 29ef71412af48e1bbf7739d1dbc4c4feb3b9a86a (patch) | |
tree | e66fdbe820bc36d059351c68e8560a6ebf997693 | |
parent | 5fd75d737decbca787a9d6d92785a6525001d5f2 (diff) | |
download | haskell-29ef71412af48e1bbf7739d1dbc4c4feb3b9a86a.tar.gz |
UNREG: fix spelling of '-split-objs' in warning
Spelling if warning message slightly mismathed passed commandline:
$ ghc-stage2 -split-objs -C N.hs
on the commandline: warning: ignoring -fsplit-objs
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-rw-r--r-- | compiler/main/DynFlags.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 70efc544e2..020ee50891 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -2702,7 +2702,7 @@ dynamic_flags_deps = [ , make_ord_flag defGhcFlag "split-objs" (NoArg (if can_split then setGeneralFlag Opt_SplitObjs - else addWarn "ignoring -fsplit-objs")) + else addWarn "ignoring -split-objs")) , make_ord_flag defGhcFlag "split-sections" (noArgM (\dflags -> do |