summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig
diff options
context:
space:
mode:
authorDavid Hunter <david.hunter.linux@gmail.com>2024-10-14 16:13:31 +0200
committerMasahiro Yamada <masahiroy@kernel.org>2024-11-04 09:53:09 +0100
commitf16c8c08185420092d04edce6066eaf4a454bb20 (patch)
treed331dfc79bc1eb29b36ee921c1a88a9a1ffde248 /scripts/kconfig
parentkconfig: nconf: Use TAB to cycle thru dialog buttons (diff)
downloadlinux-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-xscripts/kconfig/streamline_config.pl2
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;
}