diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2019-12-17 13:16:36 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-01-07 02:18:44 +0900 |
commit | 5edcef8454a4efb10a5cebdfbf284bcaf8b85451 (patch) | |
tree | 234504af47342e3d7baed0fe6162a6f61f038bc8 /scripts/kconfig/streamline_config.pl | |
parent | adf7c5bd0674b04588246e444efef9987b2f1a6b (diff) | |
download | linux-5edcef8454a4efb10a5cebdfbf284bcaf8b85451.tar.gz linux-5edcef8454a4efb10a5cebdfbf284bcaf8b85451.tar.bz2 linux-5edcef8454a4efb10a5cebdfbf284bcaf8b85451.zip |
kconfig: localmodconfig: remove unused $config
This is unused since commit cdfc47950a53 ("kconfig: search for a config
to base the local(mod|yes)config on").
Having unused $config is confusing because $config is used as a local
variable in various sub-routines.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/streamline_config.pl')
-rwxr-xr-x | scripts/kconfig/streamline_config.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index 08d76d7b3b81..bbaa1e11a4e9 100755 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -56,8 +56,6 @@ sub dprint { print STDERR @_; } -my $config = ".config"; - my $uname = `uname -r`; chomp $uname; |