soc/intel/xeon_sp: Align resources to 4K
[coreboot2.git] / util / kconfig / patches / 0001-Kconfig-Add-KCONFIG_STRICT-mode.patch
blob4b1e5bb71ee65eb7410147ceb38581473d8b31d9
1 Make KCONFIG_WERROR more verbose.
3 Index: kconfig/confdata.c
4 ===================================================================
5 --- kconfig.orig/confdata.c
6 +++ kconfig/confdata.c
7 @@ -533,8 +533,10 @@ load:
8 free(line);
9 fclose(in);
11 - if (conf_warnings && werror)
12 + if (conf_warnings && werror) {
13 + fprintf(stderr, "\nERROR: %d warnings encountered, and warnings are errors.\n\n", conf_warnings);
14 exit(1);
15 + }
17 return 0;