Commit 70d0fbd7 authored by Felix Hädicke's avatar Felix Hädicke Committed by Max Kellermann

python/makeproject: do not use hard-code absolute path to make

parent 302432e1
......@@ -24,7 +24,7 @@ class MakeProject(Project):
return ['--quiet', self.install_target]
def make(self, toolchain, wd, args):
subprocess.check_call(['/usr/bin/make'] + args,
subprocess.check_call(['make'] + args,
cwd=wd, env=toolchain.env)
def build_make(self, toolchain, wd, install=True):
......
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