]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
streamline_config.pl: fix missing variable operator in debug print
authorDavid Hunter <david.hunter.linux@gmail.com>
Mon, 14 Oct 2024 14:13:31 +0000 (10:13 -0400)
committerMasahiro Yamada <masahiroy@kernel.org>
Mon, 4 Nov 2024 08:53:09 +0000 (17:53 +0900)
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>
scripts/kconfig/streamline_config.pl

index d51cd7ac15d2ce062eb78d07c6fc6316b5755a8b..a85d6a3108a1cfedeb80d87376fbcdb128fd162e 100755 (executable)
@@ -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;
            }