Re: [PATCH 4/7] linux-kbuild: fix: ensure selected configs were turned on in original

From: David Hunter
Date: Mon Oct 14 2024 - 10:38:09 EST


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.