mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
gh-110459: Make sure --with-openssl-rpath works on macOS (#113441)
* gh-110459: Make sure --with-openssl-rpath works on macOS On macOS the `-rpath` linker flag is spelled differently than on on platforms.
This commit is contained in:
parent
bfee2f77e1
commit
cc13eabc7c
3 changed files with 14 additions and 2 deletions
7
configure
generated
vendored
7
configure
generated
vendored
|
|
@ -27478,7 +27478,12 @@ then :
|
|||
|
||||
else $as_nop
|
||||
|
||||
rpath_arg="-Wl,-rpath="
|
||||
if test "$ac_sys_system" = "Darwin"
|
||||
then
|
||||
rpath_arg="-Wl,-rpath,"
|
||||
else
|
||||
rpath_arg="-Wl,-rpath="
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue