Commit 224a2571 authored by Bill Pemberton's avatar Bill Pemberton Committed by Steven Rostedt

localmodconfig: Set default value for ksource in streamline_config.pl

Running streamline_config.pl as it's shown it in the comment header,
you will get a warning about $ksource being uninitialized.  This is
because $ksource is set to ARGV[0], but the examples don't require any
arguments.  Fix by setting ksource to . if no ARGV[0] is given.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 0d7614f0
...@@ -135,7 +135,7 @@ GetOptions("localmodconfig" => \$localmodconfig, ...@@ -135,7 +135,7 @@ GetOptions("localmodconfig" => \$localmodconfig,
"localyesconfig" => \$localyesconfig); "localyesconfig" => \$localyesconfig);
# Get the build source and top level Kconfig file (passed in) # Get the build source and top level Kconfig file (passed in)
my $ksource = $ARGV[0]; my $ksource = ($ARGV[0] ? $ARGV[0] : '.');
my $kconfig = $ARGV[1]; my $kconfig = $ARGV[1];
my $lsmod_file = $ENV{'LSMOD'}; my $lsmod_file = $ENV{'LSMOD'};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment