(self)
| 438 | super()._build_src(config_args) |
| 439 | |
| 440 | def _post_install_3xx(self): |
| 441 | # create ssl/ subdir with example configs |
| 442 | # Install FIPS module |
| 443 | self._subprocess_call( |
| 444 | ["make", "-j1", "install_ssldirs", "install_fips"], |
| 445 | cwd=self.build_dir |
| 446 | ) |
| 447 | if not os.path.isdir(self.lib_dir): |
| 448 | # 3.0.0-beta2 uses lib64 on 64 bit platforms |
| 449 | lib64 = self.lib_dir + "64" |
| 450 | os.symlink(lib64, self.lib_dir) |
| 451 | |
| 452 | def _post_install_4xx(self): |
| 453 | self._post_install_3xx() |
no test coverage detected