Skip to content

Commit

Permalink
gh-123716: Fix 'Bad substitution' syntax error in configure script fo…
Browse files Browse the repository at this point in the history
…r NetBSD compatibility (#123717)
  • Loading branch information
furkanonder authored Sep 5, 2024
1 parent b5aa271 commit 42f5243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down

0 comments on commit 42f5243

Please sign in to comment.