mirror of
https://github.com/servo/servo.git
synced 2025-06-21 15:49:04 +01:00
auto merge of #4816 : mskrzypkows/servo/mskrzypkows_b, r=jdm
Sorry again the same pull request because I accidentally removed commit from branch.
This commit is contained in:
commit
3da41c2b16
1 changed files with 4 additions and 1 deletions
|
@ -86,9 +86,12 @@ class MachCommands(CommandBase):
|
|||
env = self.build_env()
|
||||
if android:
|
||||
# Build OpenSSL for android
|
||||
make_cmd = ["make"]
|
||||
if jobs is not None:
|
||||
make_cmd += ["-j" + jobs]
|
||||
with cd(self.android_support_dir()):
|
||||
status = subprocess.call(
|
||||
["make", "-j4", "-f", "openssl.makefile"],
|
||||
make_cmd + ["-f", "openssl.makefile"],
|
||||
env=self.build_env())
|
||||
env['OPENSSL_PATH'] = path.join(self.android_support_dir(), "openssl-1.0.1k")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue