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.