summaryrefslogtreecommitdiff
path: root/command/build_ext.py
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2017-09-06 15:45:25 -0700
committerGitHub <noreply@github.com>2017-09-06 15:45:25 -0700
commit3a5968943a1722688994990326d2009210179e9d (patch)
treebd50e09620c8966d934c7cff563ab8fc0766c3b4 /command/build_ext.py
parent91a97f1145f3d78667b162907af985b8d6fcc61a (diff)
downloadpython-setuptools-git-3a5968943a1722688994990326d2009210179e9d.tar.gz
Remove all mention of Windows IA-64 support (GH-3389)
It was mostly removed long ago.
Diffstat (limited to 'command/build_ext.py')
-rw-r--r--command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/command/build_ext.py b/command/build_ext.py
index 9155626a..74445655 100644
--- a/command/build_ext.py
+++ b/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: