Skip to content

Commit 14fcf0d

Browse files
committed
multissl: add _post_install_4xx() method
1 parent 1b64620 commit 14fcf0d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Tools/ssl/multissltests.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,10 @@ class BuildOpenSSL(AbstractBuilder):
427427
depend_target = 'depend'
428428

429429
def _post_install(self):
430-
if self.version.startswith(("3.", "4.")):
430+
if self.version.startswith("3."):
431431
self._post_install_3xx()
432+
elif self.version.startswith("4."):
433+
self._post_install_4xx()
432434

433435
def _build_src(self, config_args=()):
434436
if self.version.startswith(("3.", "4.")):
@@ -447,6 +449,9 @@ def _post_install_3xx(self):
447449
lib64 = self.lib_dir + "64"
448450
os.symlink(lib64, self.lib_dir)
449451

452+
def _post_install_4xx(self):
453+
self._post_install_3xx()
454+
450455
@property
451456
def short_version(self):
452457
"""Short version for OpenSSL download URL"""

0 commit comments

Comments
 (0)