Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-93939: Build C extensions without setup.py #94474

Merged
merged 4 commits into from
Jul 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix multissltests, use sharedmods target
  • Loading branch information
tiran committed Jul 13, 2022
commit 785856983953fb6c50adf909df88c6c73f0d8da2
2 changes: 1 addition & 1 deletion Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def recompile_pymods(self):
env["LD_RUN_PATH"] = self.lib_dir

log.info("Rebuilding Python modules")
cmd = ["make", "oldsharedmods", "checksharedmods"]
cmd = ["make", "sharedmods", "checksharedmods"]
self._subprocess_call(cmd, env=env)
self.check_imports()

Expand Down