summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/sysconfig.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-27 01:59:43 (GMT)
committerGreg Ward <gward@python.net>2000-06-27 01:59:43 (GMT)
commitb231e1ae1837c5d882908ee0908584740a85d976 (patch)
treebc9342ee6789b6ad67e81f1797e6cdb79575fc49 /Lib/distutils/sysconfig.py
parent4f880280c2b03ec08c17714f7023eeb9d89849e8 (diff)
downloadcpython-b231e1ae1837c5d882908ee0908584740a85d976.zip
cpython-b231e1ae1837c5d882908ee0908584740a85d976.tar.gz
cpython-b231e1ae1837c5d882908ee0908584740a85d976.tar.bz2
Oops, only do that AIX hack on AIX.
Diffstat (limited to 'Lib/distutils/sysconfig.py')
-rw-r--r--Lib/distutils/sysconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
index 9ca94ed..b2aa3f2 100644
--- a/Lib/distutils/sysconfig.py
+++ b/Lib/distutils/sysconfig.py
@@ -246,7 +246,7 @@ def _init_posix():
# On AIX, there are wrong paths to the linker scripts in the Makefile
# -- these paths are relative to the Python source, but when installed
# the scripts are in another directory.
- if sys.platform: # == 'aix4': # what about AIX 3.x ?
+ if sys.platform == 'aix4': # what about AIX 3.x ?
# Linker script is in the config directory, not in Modules as the
# Makefile says.
python_lib = get_python_lib(standard_lib=1)