Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 161310
b: refs/heads/master
c: ea2c189
h: refs/heads/master
v: v3
  • Loading branch information
Steven Rostedt authored and Steven Rostedt committed Aug 19, 2009
1 parent 1d8f5cc commit 940793d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 74398d3224c0942c479bef76de542e95c202a478
refs/heads/master: ea2c1894b66301bce565471d6914d49ce91ee015
8 changes: 5 additions & 3 deletions trunk/scripts/kconfig/streamline_config.pl
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,14 @@ sub parse_config_dep_select
# Finally, read the .config file and turn off any module enabled that
# we could not find a reason to keep enabled.
while(<CIN>) {
if (/^(CONFIG.*)=m/) {
if (/^(CONFIG.*)=(m|y)/) {
if (defined($configs{$1})) {
$setconfigs{$1} = 1;
$setconfigs{$1} = $2;
print;
} else {
} elsif ($2 eq "m") {
print "# $1 is not set\n";
} else {
print;
}
} else {
print;
Expand Down

0 comments on commit 940793d

Please sign in to comment.