summaryrefslogtreecommitdiffstats
path: root/util/kconfig/patches/0010-reenable-source-in-choice.patch
blob: 65a338c9ccc404fa477c7b64443732b5dc72a1be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Kconfig 5.8 (since commit 09d5873e4d1f70202314b5fe40160f9b14b9d2d0)
blocks using the source statement within choice but that's a pattern we
use intensively. Re-enable it.

Index: kconfig/parser.y
===================================================================
--- kconfig.orig/parser.y
+++ kconfig/parser.y
@@ -134,6 +134,7 @@ stmt_list_in_choice:
 	| stmt_list_in_choice comment_stmt
 	| stmt_list_in_choice config_stmt
 	| stmt_list_in_choice if_stmt_in_choice
+	| stmt_list_in_choice source_stmt
 	| stmt_list_in_choice error T_EOL	{ zconf_error("invalid statement"); }
 ;