Message ID | 20241014141345.5680-2-david.hunter.linux@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | streamline_config.pl: fix: process configs set to "y" | expand |
On Mon, Oct 14, 2024 at 11:14 PM David Hunter <david.hunter.linux@gmail.com> wrote: > > Put in the dollar sign for the variable '$config'. That way, the debug > message has more meaning. > > Signed-off-by: David Hunter <david.hunter.linux@gmail.com> > --- > V1 https://lore.kernel.org/all/20240913171205.22126-3-david.hunter.linux@gmail.com/ > > V2 > - changed the subject Applied to linux-kbuild. Thanks! > --- > scripts/kconfig/streamline_config.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl > index d51cd7ac15d2..a85d6a3108a1 100755 > --- a/scripts/kconfig/streamline_config.pl > +++ b/scripts/kconfig/streamline_config.pl > @@ -503,7 +503,7 @@ sub parse_config_selects > > # Check if something other than a module selects this config > if (defined($orig_configs{$conf}) && $orig_configs{$conf} ne "m") { > - dprint "$conf (non module) selects config, we are good\n"; > + dprint "$conf (non module) selects $config, we are good\n"; > # we are good with this > return; > } > -- > 2.43.0 > -- Best Regards Masahiro Yamada
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index d51cd7ac15d2..a85d6a3108a1 100755 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -503,7 +503,7 @@ sub parse_config_selects # Check if something other than a module selects this config if (defined($orig_configs{$conf}) && $orig_configs{$conf} ne "m") { - dprint "$conf (non module) selects config, we are good\n"; + dprint "$conf (non module) selects $config, we are good\n"; # we are good with this return; }
Put in the dollar sign for the variable '$config'. That way, the debug message has more meaning. Signed-off-by: David Hunter <david.hunter.linux@gmail.com> --- V1 https://lore.kernel.org/all/20240913171205.22126-3-david.hunter.linux@gmail.com/ V2 - changed the subject --- scripts/kconfig/streamline_config.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)