mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Fix misspelled sys.platform name and misspelled filename.
This commit is contained in:
parent
ffe62ed46d
commit
de2d78a153
2 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ ffi_platforms = {
|
|||
'SH64': ['src/sh64/sysv.S', 'src/sh64/ffi.c'],
|
||||
'PA': ['src/pa/linux.S', 'src/pa/ffi.c'],
|
||||
'PA_LINUX': ['src/pa/linux.S', 'src/pa/ffi.c'],
|
||||
'PA_HPUX': ['src/pa/hpux32.s', 'src/pa/ffi.c'],
|
||||
'PA_HPUX': ['src/pa/hpux32.S', 'src/pa/ffi.c'],
|
||||
}
|
||||
|
||||
ffi_srcdir = '@srcdir@'
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue