diff options
author | Thomas Heller <theller@ctypes.org> | 2008-06-02 18:41:30 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2008-06-02 18:41:30 (GMT) |
commit | de2d78a1531db5775878effa0e139a5468fc123e (patch) | |
tree | 64fa87b6dd901ad537990e526266b2fe97de5321 /setup.py | |
parent | ffe62ed46d93685353e0011ea1cf06169e2e9e06 (diff) | |
download | cpython-de2d78a1531db5775878effa0e139a5468fc123e.zip cpython-de2d78a1531db5775878effa0e139a5468fc123e.tar.gz cpython-de2d78a1531db5775878effa0e139a5468fc123e.tar.bz2 |
Fix misspelled sys.platform name and misspelled filename.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1607,7 +1607,7 @@ class PyBuildExt(build_ext): # finding some -z option for the Sun compiler. extra_link_args.append('-mimpure-text') - elif sys.platform.startswith('hpux'): + elif sys.platform.startswith('hp-ux'): extra_link_args.append('-fPIC') ext = Extension('_ctypes', |