diff options
Diffstat (limited to 'config/python.m4')
-rw-r--r-- | config/python.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/python.m4 b/config/python.m4 index 52f34070dd8..e500873ff3c 100644 --- a/config/python.m4 +++ b/config/python.m4 @@ -120,7 +120,9 @@ else found_shlib=0 for d in "${python_libdir}" "${python_configdir}" /usr/lib64 /usr/lib do - # We don't know the platform DLSUFFIX here, so check 'em all. + # Note: DLSUFFIX is for loadable modules, not shared + # libraries, so cannot be used here portably. Just + # check all known possibilities. for e in .so .dll .dylib .sl; do if test -e "$d/lib${ldlibrary}$e"; then python_libdir="$d" |