summaryrefslogtreecommitdiff
path: root/util/kconfig/patches/0001-Kconfig-Add-KCONFIG_STRICT-mode.patch
blob: 4b1e5bb71ee65eb7410147ceb38581473d8b31d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
 }