Skip to content

Commit a5152be

Browse files
committed
Update multissltests.py for OpenSSL 4
1 parent 8e607c4 commit a5152be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/ssl/multissltests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,11 +427,11 @@ class BuildOpenSSL(AbstractBuilder):
427427
depend_target = 'depend'
428428

429429
def _post_install(self):
430-
if self.version.startswith("3."):
430+
if self.version.startswith(("3.", "4.")):
431431
self._post_install_3xx()
432432

433433
def _build_src(self, config_args=()):
434-
if self.version.startswith("3."):
434+
if self.version.startswith(("3.", "4.")):
435435
config_args += ("enable-fips",)
436436
super()._build_src(config_args)
437437

0 commit comments

Comments
 (0)