On 9/23/24 23:45, Masahiro Yamada wrote:
I believe defined($orig_configs{$conf} is always true here because it was already checked a few lines above. # We only need to process if the depend config is a module if (!defined($orig_configs{$conf}) || $orig_configs{$conf} eq "y") { next; } If $conf is not present in the original .config, the 'next' statement skips the current iteration.
Good point, I will remove this portion for the series patch.