Fix make() rule to run make commands sequentially and not in parallel. (#317)

Fixes #313.
This commit is contained in:
irengrig 2019-09-16 13:43:41 -04:00 committed by GitHub
parent 6ad84f7739
commit 2565832da9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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(