diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2017-03-10 05:01:00 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-03-11 05:25:50 +0300 |
commit | 35288e30ebca59effbd44c5976afc71a342e9a85 (patch) | |
tree | 533a76e0dfab7a2eff1b8809b68f8a14effe037f /Makefile | |
parent | ef44bca87c6b505df0d54e12d67e839837cbcd30 (diff) | |
download | linux-35288e30ebca59effbd44c5976afc71a342e9a85.tar.xz |
Kbuild: fix file name in comment about extra gcc checks
Extra gcc checks like W=1 were moved to scripts/Makefile.exrawarn,
so the file name in comment needs to be fixed.
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -707,7 +707,7 @@ KBUILD_CFLAGS += $(call cc-option, -fcatch-undefined-behavior) else # These warnings generated too much noise in a regular build. -# Use make W=1 to enable them (see scripts/Makefile.build) +# Use make W=1 to enable them (see scripts/Makefile.extrawarn) KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable) KBUILD_CFLAGS += $(call cc-disable-warning, unused-const-variable) endif |