aboutsummaryrefslogtreecommitdiff
path: root/scripts/kernel.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kernel.py')
-rw-r--r--scripts/kernel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kernel.py b/scripts/kernel.py
index 4494f22..71ad1ac 100644
--- a/scripts/kernel.py
+++ b/scripts/kernel.py
@@ -39,8 +39,8 @@ def make():
wd = os.getcwd()
os.chdir(sf(conf.linux_sources))
if conf.kernel_make_output:
- subprocess.call(build_command, env=utils.get_kernel_env())
+ subprocess.call(conf.build_command, env=utils.get_kernel_env())
else:
- subprocess.call(build_command, stdout=subprocess.DEVNULL,
+ subprocess.call(conf.build_command, stdout=subprocess.DEVNULL,
env=utils.get_kernel_env())
os.chdir(wd)