8000 Mirroring path by kaocher82 · Pull Request #25081 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Mirroring path #25081

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

Closed
wants to merge 5 commits into from
Closed
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
'Refactored by Sourcery'
  • Loading branch information
Sourcery AI committed Mar 29, 2021
commit 9b646f7721220d1042b9c995e536f77483f9ef70
4 changes: 2 additions & 2 deletions PCbuild/prepare_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ def copy_includes(makefile, suffix):
os.makedirs(dir)
except OSError:
pass
copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
with open(makefile) as fin:
copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
for line in fin:
if copy_if_different in line:
perl, script, src, dest = line.split()
if not '$(INCO_D)' in dest:
if '$(INCO_D)' not in dest:
continue
# We're in the root of the source tree
src = src.replace('$(SRC_D)', '.').strip('"')
Expand Down
0