mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
bpo-43103: Fix build failure with macOS framework builds. (GH-24676)
This commit is contained in:
parent
a65b050516
commit
0608425944
2 changed files with 2 additions and 2 deletions
2
configure
vendored
2
configure
vendored
|
@ -17810,7 +17810,7 @@ $as_echo "yes" >&6; }
|
|||
fi
|
||||
|
||||
LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)'
|
||||
if test "$PY_ENABLE_SHARED" = 1; then
|
||||
if test "$PY_ENABLE_SHARED" = 1 || test "$enable_framework" ; then
|
||||
LIBRARY_DEPS="\$(LDLIBRARY) $LIBRARY_DEPS"
|
||||
if test "$STATIC_LIBPYTHON" = 1; then
|
||||
LIBRARY_DEPS="\$(LIBRARY) $LIBRARY_DEPS"
|
||||
|
|
|
@ -5903,7 +5903,7 @@ else
|
|||
fi],
|
||||
[AC_MSG_RESULT(yes)])
|
||||
LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)'
|
||||
if test "$PY_ENABLE_SHARED" = 1; then
|
||||
if test "$PY_ENABLE_SHARED" = 1 || test "$enable_framework" ; then
|
||||
LIBRARY_DEPS="\$(LDLIBRARY) $LIBRARY_DEPS"
|
||||
if test "$STATIC_LIBPYTHON" = 1; then
|
||||
LIBRARY_DEPS="\$(LIBRARY) $LIBRARY_DEPS"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue