Fix make() rule to run make commands sequentially and not in parallel. (#317)
Fixes #313.
This commit is contained in:
parent
6ad84f7739
commit
2565832da9
|
@ -55,7 +55,7 @@ def create_make_script(
|
|||
script += ["echo \"PKG_CONFIG_PATH=$$PKG_CONFIG_PATH$$\""]
|
||||
|
||||
script += ["##symlink_contents_to_dir## $$EXT_BUILD_ROOT$$/{} $$BUILD_TMPDIR$$".format(root)]
|
||||
script += ["" + " & ".join(make_commands)]
|
||||
script += ["" + " && ".join(make_commands)]
|
||||
return "\n".join(script)
|
||||
|
||||
def get_env_vars(
|
||||
|
|
Loading…
Reference in New Issue