Skip to content
Snippets Groups Projects
Unverified Commit 075e9428 authored by Harmen Stoppels's avatar Harmen Stoppels Committed by GitHub
Browse files

Make the build stage of OpenSSL parallel (#18024)

parent 3fbbf539
No related branches found
No related tags found
No related merge requests found
...@@ -78,8 +78,6 @@ class Openssl(Package): # Uses Fake Autotools, should subclass Package ...@@ -78,8 +78,6 @@ class Openssl(Package): # Uses Fake Autotools, should subclass Package
depends_on('perl@5.14.0:', type=('build', 'test')) depends_on('perl@5.14.0:', type=('build', 'test'))
parallel = False
@classmethod @classmethod
def determine_version(cls, exe): def determine_version(cls, exe):
output = Executable(exe)('version', output=str) output = Executable(exe)('version', output=str)
...@@ -128,8 +126,10 @@ def install(self, spec, prefix): ...@@ -128,8 +126,10 @@ def install(self, spec, prefix):
make() make()
if self.run_tests: if self.run_tests:
make('test') # 'VERBOSE=1' make('test', parallel=False) # 'VERBOSE=1'
make('install')
# See https://github.com/openssl/openssl/issues/7466#issuecomment-432148137
make('install', parallel=False)
@run_after('install') @run_after('install')
def link_system_certs(self): def link_system_certs(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment