Fix SF # 551504, python -v sometimes fails to find init (HPUX)

Joseph Winston recommends removing DYNAMIC_PATH, since it can
cause some dynamic libraries to not load on HP-UX 11.
This commit is contained in:
Neal Norwitz 2002-11-02 20:58:05 +00:00
parent e08e1bc80a
commit 40cac739c2
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
flags = BIND_FIRST | BIND_DEFERRED;
if (Py_VerboseFlag) {
flags = DYNAMIC_PATH | BIND_FIRST | BIND_IMMEDIATE |
flags = BIND_FIRST | BIND_IMMEDIATE |
BIND_NONFATAL | BIND_VERBOSE;
printf("shl_load %s\n",pathname);
}