mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 19:21:35 +01:00
Get rid of imp, started giving deprecation warning every time in Python 3.7 in Ubuntu 19.04.
Please python stop torturing me with refactors. Make ./run -u blow up if executable not found, otherwise I go crazy. Get ./test-gdb back to life after the ./run relative path refactor, forgot to test this.
This commit is contained in:
@@ -133,7 +133,7 @@ Build the baremetal examples with crosstool-NG.
|
||||
in_name, in_ext = os.path.splitext(in_basename)
|
||||
if (
|
||||
os.path.isfile(in_path) and
|
||||
in_ext in (self.env['c_ext'], self.env['asm_ext'])
|
||||
in_ext in self.env['build_in_exts']
|
||||
):
|
||||
out = os.path.join(out_dir, in_name + self.env['baremetal_build_ext'])
|
||||
src = os.path.join(self.env['baremetal_source_dir'], in_path)
|
||||
|
||||
Reference in New Issue
Block a user