diff options
author | David Hunter <david.hunter.linux@gmail.com> | 2024-10-14 16:13:31 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-11-04 09:53:09 +0100 |
commit | f16c8c08185420092d04edce6066eaf4a454bb20 (patch) | |
tree | d331dfc79bc1eb29b36ee921c1a88a9a1ffde248 /scripts/kconfig | |
parent | kconfig: nconf: Use TAB to cycle thru dialog buttons (diff) | |
download | linux-f16c8c08185420092d04edce6066eaf4a454bb20.tar.xz linux-f16c8c08185420092d04edce6066eaf4a454bb20.zip |
streamline_config.pl: fix missing variable operator in debug print
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>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig')
-rwxr-xr-x | scripts/kconfig/streamline_config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |