diff options
Diffstat (limited to 'util/kconfig/patches/0001-Kconfig-Add-KCONFIG_STRICT-mode.patch')
-rw-r--r-- | util/kconfig/patches/0001-Kconfig-Add-KCONFIG_STRICT-mode.patch | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/util/kconfig/patches/0001-Kconfig-Add-KCONFIG_STRICT-mode.patch b/util/kconfig/patches/0001-Kconfig-Add-KCONFIG_STRICT-mode.patch deleted file mode 100644 index 4b1e5bb71e..0000000000 --- a/util/kconfig/patches/0001-Kconfig-Add-KCONFIG_STRICT-mode.patch +++ /dev/null @@ -1,18 +0,0 @@ -Make KCONFIG_WERROR more verbose. - -Index: kconfig/confdata.c -=================================================================== ---- kconfig.orig/confdata.c -+++ kconfig/confdata.c -@@ -533,8 +533,10 @@ load: - free(line); - fclose(in); - -- if (conf_warnings && werror) -+ if (conf_warnings && werror) { -+ fprintf(stderr, "\nERROR: %d warnings encountered, and warnings are errors.\n\n", conf_warnings); - exit(1); -+ } - - return 0; - } |