Skip to content

Commit cd38925

Browse files
committed
Auto merge of #3362 - alexcrichton:slower-ssl, r=alexcrichton
Use -j1 on recursive make for OpenSSL It looks like OpenSSL building on OSX has races...
2 parents d1334ef + a600e6b commit cd38925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ target/openssl/$(1).stamp: target/openssl/openssl-$$(OPENSSL_VERS).tar.gz \
266266
AR=$$(OPENSSL_AR_$(1)) \
267267
$$(SETARCH_$(1)) ./Configure --prefix=$$(OPENSSL_INSTALL_$(1)) \
268268
no-dso $$(OPENSSL_OS_$(1)) -fPIC $$(OPENSSL_CFLAGS_$(1))&& \
269-
$(MAKE) -j10 && \
269+
$(MAKE) -j1 && \
270270
$(MAKE) install)
271271
touch $$@
272272

0 commit comments

Comments
 (0)