summaryrefslogtreecommitdiffstats
path: root/PCbuild/prepare_ssl.py
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-03-08 20:50:57 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-03-08 20:50:57 (GMT)
commit79993a90e2c3668283324681e9d97c30807221de (patch)
tree296b703a18a28716e19205970461c21a8edab692 /PCbuild/prepare_ssl.py
parentada6db7870359581d101b28beaa9207a0c5509a1 (diff)
downloadcpython-79993a90e2c3668283324681e9d97c30807221de.zip
cpython-79993a90e2c3668283324681e9d97c30807221de.tar.gz
cpython-79993a90e2c3668283324681e9d97c30807221de.tar.bz2
Adds warning to prepare_ssl when nasm is not available.
Force clean of externals on buildbots.
Diffstat (limited to 'PCbuild/prepare_ssl.py')
-rw-r--r--PCbuild/prepare_ssl.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py
index dea4d87..f6170f5 100644
--- a/PCbuild/prepare_ssl.py
+++ b/PCbuild/prepare_ssl.py
@@ -174,6 +174,9 @@ def main():
if not find_all_on_path('nmake.exe'):
print('Could not find nmake.exe, try running env.bat')
sys.exit(1)
+ if not find_all_on_path('nasm.exe'):
+ print('Could not find nasm.exe, please add to PATH')
+ sys.exit(1)
sys.stdout.flush()
# Put our working Perl at the front of our path