mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 14:41:42 +03:00
check GNU make exists in path
Signed-off-by: Giridhar Prasath R <cristianoprasath@gmail.com>
This commit is contained in:
parent
22bc75ee3e
commit
e06658cb24
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ nparallel = cpu_count() * 2
|
|||
|
||||
uname = uname()[0]
|
||||
|
||||
if "BSD" in uname:
|
||||
if call("command -v gmake", shell=True) == 0:
|
||||
make_cmd = 'gmake'
|
||||
else:
|
||||
make_cmd = 'make'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue