diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-12-20 02:56:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-20 02:56:57 (GMT) |
commit | a44ce6c9f725d336aea51a946b42769f29fed613 (patch) | |
tree | c8e4e53f45c192e363511ed45e3e79b729fc5a6e /configure | |
parent | 09a36cdfb7c22f44df45b44e5561776206bcedfb (diff) | |
download | cpython-a44ce6c9f725d336aea51a946b42769f29fed613.zip cpython-a44ce6c9f725d336aea51a946b42769f29fed613.tar.gz cpython-a44ce6c9f725d336aea51a946b42769f29fed613.tar.bz2 |
bpo-42604: always set EXT_SUFFIX=${SOABI}${SHLIB_SUFFIX} when using configure (GH-23708)
Now all platforms use a value for the "EXT_SUFFIX" build variable derived
from SOABI (for instance in FreeBSD, "EXT_SUFFIX" is now ".cpython-310d.so"
instead of ".so"). Previously only Linux, Mac and VxWorks were using a value
for "EXT_SUFFIX" that included "SOABI".
Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -15429,13 +15429,7 @@ _ACEOF fi - -case $ac_sys_system in - Linux*|GNU*|Darwin|VxWorks) - EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};; - *) - EXT_SUFFIX=${SHLIB_SUFFIX};; -esac +EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX} { $as_echo "$as_me:${as_lineno-$LINENO}: checking LDVERSION" >&5 $as_echo_n "checking LDVERSION... " >&6; } |