We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b64620 commit 14fcf0dCopy full SHA for 14fcf0d
1 file changed
Tools/ssl/multissltests.py
@@ -427,8 +427,10 @@ class BuildOpenSSL(AbstractBuilder):
427
depend_target = 'depend'
428
429
def _post_install(self):
430
- if self.version.startswith(("3.", "4.")):
+ if self.version.startswith("3."):
431
self._post_install_3xx()
432
+ elif self.version.startswith("4."):
433
+ self._post_install_4xx()
434
435
def _build_src(self, config_args=()):
436
if self.version.startswith(("3.", "4.")):
@@ -447,6 +449,9 @@ def _post_install_3xx(self):
447
449
lib64 = self.lib_dir + "64"
448
450
os.symlink(lib64, self.lib_dir)
451
452
+ def _post_install_4xx(self):
453
+ self._post_install_3xx()
454
+
455
@property
456
def short_version(self):
457
"""Short version for OpenSSL download URL"""
0 commit comments