From: Alex Crichton Date: Fri, 2 Dec 2016 22:27:37 +0000 (-0800) Subject: Use -j1 on recursive make for OpenSSL X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~11^2~96^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a600e6bcf5712778ba6c9ea8ab10939090ba8fef;p=cargo.git Use -j1 on recursive make for OpenSSL It looks like OpenSSL building on OSX has races... --- diff --git a/Makefile.in b/Makefile.in index ef02d4547..89e3f2a31 100644 --- a/Makefile.in +++ b/Makefile.in @@ -266,7 +266,7 @@ target/openssl/$(1).stamp: target/openssl/openssl-$$(OPENSSL_VERS).tar.gz \ AR=$$(OPENSSL_AR_$(1)) \ $$(SETARCH_$(1)) ./Configure --prefix=$$(OPENSSL_INSTALL_$(1)) \ no-dso $$(OPENSSL_OS_$(1)) -fPIC $$(OPENSSL_CFLAGS_$(1))&& \ - $(MAKE) -j10 && \ + $(MAKE) -j1 && \ $(MAKE) install) touch $$@