diff options
| author | John 'Warthog9' Hawley (VMware) <[email protected]> | 2021-04-20 00:29:26 +0000 |
|---|---|---|
| committer | Steven Rostedt (VMware) <[email protected]> | 2021-05-03 22:57:02 +0000 |
| commit | da2e56634b262fddfa40b2cfedd24de841418cd3 (patch) | |
| tree | e78bdb0894e1ede09e153cf2aaf71aa590a02073 | |
| parent | Linux 5.12-rc1 (diff) | |
| download | kernel-da2e56634b262fddfa40b2cfedd24de841418cd3.tar.gz kernel-da2e56634b262fddfa40b2cfedd24de841418cd3.zip | |
ktest: Minor cleanup with uninitialized variable $build_options
Signed-off-by: John 'Warthog9' Hawley (VMware) <[email protected]>
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
| -rwxr-xr-x | tools/testing/ktest/ktest.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 4e2450964517..18fd4fd117dd 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -2594,6 +2594,9 @@ sub build { # Run old config regardless, to enforce min configurations make_oldconfig; + if (not defined($build_options)){ + $build_options = ""; + } my $build_ret = run_command "$make $build_options", $buildlog; if (defined($post_build)) { |
