diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-09-06 15:45:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 15:45:25 -0700 |
commit | 49ce74efe845a8a91939ff3990a5f233262d3e1f (patch) | |
tree | 1a8cc8d4b43bdc3fe04d9fc4810a5830d14d43fe /Lib/distutils/command/build_ext.py | |
parent | effc12f8e9e20d0951d2ba5883587666bd8218e3 (diff) | |
download | cpython-git-49ce74efe845a8a91939ff3990a5f233262d3e1f.tar.gz |
Remove all mention of Windows IA-64 support (GH-3389)
It was mostly removed long ago.
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 9155626a47..7444565562 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -208,7 +208,7 @@ class build_ext(Command): if self.plat_name == 'win32': suffix = 'win32' else: - # win-amd64 or win-ia64 + # win-amd64 suffix = self.plat_name[4:] new_lib = os.path.join(sys.exec_prefix, 'PCbuild') if suffix: |