diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-05-19 07:05:01 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-05-19 07:05:01 (GMT) |
commit | 4eafe9ee4f37ad06f7688f23df07f9390f522fdc (patch) | |
tree | 9060b518a59f22354a1e610cb7a15266dffa9b56 /Python | |
parent | 58e28887d54315fafd918a7a38a037e5b77fcc9a (diff) | |
download | cpython-4eafe9ee4f37ad06f7688f23df07f9390f522fdc.zip cpython-4eafe9ee4f37ad06f7688f23df07f9390f522fdc.tar.gz cpython-4eafe9ee4f37ad06f7688f23df07f9390f522fdc.tar.bz2 |
Oops, I forgot to include this file in the last commit (46046):
Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.
I suppose this could be backported if anyone cares.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/dynload_hpux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index b4de0814..fec0826 100644 --- a/Python/dynload_hpux.c +++ b/Python/dynload_hpux.c @@ -14,8 +14,8 @@ #endif const struct filedescr _PyImport_DynLoadFiletab[] = { - {".sl", "rb", C_EXTENSION}, - {"module.sl", "rb", C_EXTENSION}, + {SHLIB_EXT, "rb", C_EXTENSION}, + {"module"SHLIB_EXT, "rb", C_EXTENSION}, {0, 0} }; |