python/makeproject: do not use hard-code absolute path to make
This commit is contained in:
parent
302432e157
commit
70d0fbd715
|
@ -24,7 +24,7 @@ class MakeProject(Project):
|
||||||
return ['--quiet', self.install_target]
|
return ['--quiet', self.install_target]
|
||||||
|
|
||||||
def make(self, toolchain, wd, args):
|
def make(self, toolchain, wd, args):
|
||||||
subprocess.check_call(['/usr/bin/make'] + args,
|
subprocess.check_call(['make'] + args,
|
||||||
cwd=wd, env=toolchain.env)
|
cwd=wd, env=toolchain.env)
|
||||||
|
|
||||||
def build_make(self, toolchain, wd, install=True):
|
def build_make(self, toolchain, wd, install=True):
|
||||||
|
|
Loading…
Reference in New Issue