mirror of https://github.com/python/cpython
[3.13] gh-123716: Fix 'Bad substitution' syntax error in configure script for NetBSD compatibility (GH-123717) (#123752)
gh-123716: Fix 'Bad substitution' syntax error in configure script for NetBSD compatibility (GH-123717)
(cherry picked from commit 42f52431e9
)
Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
This commit is contained in:
parent
5c3078d6e5
commit
e68f30ecd2
|
@ -4507,7 +4507,7 @@ if test "$cross_compiling" = yes; then
|
|||
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
|
||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking iOS deployment target" >&5
|
||||
printf %s "checking iOS deployment target... " >&6; }
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${_host_os:3}
|
||||
IPHONEOS_DEPLOYMENT_TARGET=$(echo ${_host_os} | cut -c4-)
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
|
||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $IPHONEOS_DEPLOYMENT_TARGET" >&5
|
||||
printf "%s\n" "$IPHONEOS_DEPLOYMENT_TARGET" >&6; }
|
||||
|
|
|
@ -758,7 +758,7 @@ if test "$cross_compiling" = yes; then
|
|||
|
||||
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
|
||||
AC_MSG_CHECKING([iOS deployment target])
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${_host_os:3}
|
||||
IPHONEOS_DEPLOYMENT_TARGET=$(echo ${_host_os} | cut -c4-)
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
|
||||
AC_MSG_RESULT([$IPHONEOS_DEPLOYMENT_TARGET])
|
||||
|
||||
|
|
Loading…
Reference in New Issue