mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
fix ./build-qemu --clean
Was failing with: ``` TypeError: clean_pre() takes 1 positional argument but 2 were given ```
This commit is contained in:
@@ -1997,7 +1997,7 @@ after configure, e.g. SCons. Usually contains specific targets or other build fl
|
||||
)
|
||||
return ret
|
||||
|
||||
def clean_pre(self):
|
||||
def clean_pre(self, build_dir):
|
||||
pass
|
||||
|
||||
def clean(self):
|
||||
@@ -2007,7 +2007,7 @@ after configure, e.g. SCons. Usually contains specific targets or other build fl
|
||||
self.sh.rmrf(build_dir)
|
||||
self.clean_post(build_dir)
|
||||
|
||||
def clean_post(self):
|
||||
def clean_post(self, build_dir):
|
||||
pass
|
||||
|
||||
def build(self):
|
||||
|
||||
Reference in New Issue
Block a user