summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk')
-rw-r--r--mk/config.mk.in2
-rw-r--r--mk/warnings.mk8
2 files changed, 5 insertions, 5 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in
index e1259e5de0..9fff715549 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -440,7 +440,7 @@ SRC_HC_OPTS_STAGE0 =
SRC_HC_OPTS_STAGE1 =
SRC_HC_OPTS_STAGE2 =
-# Warning supression flags. See mk/warnings.mk.
+# Warning suppression flags. See mk/warnings.mk.
SRC_CC_WARNING_OPTS =
SRC_HC_WARNING_OPTS =
diff --git a/mk/warnings.mk b/mk/warnings.mk
index cf220429ee..abbee68735 100644
--- a/mk/warnings.mk
+++ b/mk/warnings.mk
@@ -123,10 +123,10 @@ GhcBootLibExtraHcOpts += -fno-warn-deprecated-flags
# * Most .cabal files specify -Wall. But not all, and not all building we
# do relies on .cabal files. So we have to add -Wall ourselves somewhere.
#
-# * Some .cabal also specify warning supression flags. Because -Wall
-# overrides any warning supression flags that come before it, we have to
-# make sure -Wall comes before any warning supression flags. So we add it
+# * Some .cabal also specify warning suppression flags. Because -Wall
+# overrides any warning suppression flags that come before it, we have to
+# make sure -Wall comes before any warning suppression flags. So we add it
# to SRC_HC_OPTS.
#
-# * Similarly, our own warning supression should come after the -Wall from
+# * Similarly, our own warning suppression should come after the -Wall from
# the .cabal files, so we do *not* add them to SRC_HC_OPTS.