diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-07-03 16:08:47 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-07-03 16:08:47 (GMT) |
commit | ac2bd5b1e8c5d8ee04c12ef6f34f1c9f1f8338c0 (patch) | |
tree | 715c9a4e41cf696ba41847d36729609d9d28b8ec /PCbuild/prepare_ssl.py | |
parent | fdbeb2b4b67e1e44c96127a06cf1bdf878f4f7ca (diff) | |
download | cpython-ac2bd5b1e8c5d8ee04c12ef6f34f1c9f1f8338c0.zip cpython-ac2bd5b1e8c5d8ee04c12ef6f34f1c9f1f8338c0.tar.gz cpython-ac2bd5b1e8c5d8ee04c12ef6f34f1c9f1f8338c0.tar.bz2 |
Fixes warnings when building python3.dll due to the .def file accumulating multiple copies of each line.
Adds shebang line to prepare_ssl so it will run with py.exe.
Diffstat (limited to 'PCbuild/prepare_ssl.py')
-rw-r--r-- | PCbuild/prepare_ssl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py index 671e526..4203dab 100644 --- a/PCbuild/prepare_ssl.py +++ b/PCbuild/prepare_ssl.py @@ -1,3 +1,4 @@ +#! /usr/bin/env python3 # Script for preparing OpenSSL for building on Windows. # Uses Perl to create nmake makefiles and otherwise prepare the way # for building on 32 or 64 bit platforms. |