From 1f7a1ce514016640bc10f93ac01661994b14746a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 23 Mar 2015 10:30:00 +0100 Subject: Fix NONAMEGEN generation problem NONAMEGENs were written to .config file because they were not ignored right. --- scripts/solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/solution.py b/scripts/solution.py index 0ba4d93..969219e 100644 --- a/scripts/solution.py +++ b/scripts/solution.py @@ -96,7 +96,7 @@ def apply(): txt = txt[1:] else: nt = False - if 'NONAMEGEN' in txt: # ignore generated names + if 'NONAMEGEN' in utils.smap[txt]: # ignore generated names continue f.write('CONFIG_' + utils.smap[txt] + '=') -- cgit v1.2.3