summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2020-09-29 10:38:41 -0700
committerJames Zern <jzern@google.com>2020-09-29 10:38:41 -0700
commit956d3cac34711ce90e25593b65fcd3f9d0baa763 (patch)
treec14907bcb87ddb610e579af44aa0354136c4632b
parent979e27c9700448bded96fb1d4ba31441a8da82db (diff)
downloadlibvpx-956d3cac34711ce90e25593b65fcd3f9d0baa763.tar
libvpx-956d3cac34711ce90e25593b65fcd3f9d0baa763.tar.gz
libvpx-956d3cac34711ce90e25593b65fcd3f9d0baa763.tar.bz2
libvpx-956d3cac34711ce90e25593b65fcd3f9d0baa763.zip
configure.sh: fix arm64-darwin-gcc match
after: 979e27c97 configure: add darwin20 support make the condition more specific by including the trailing -gcc (-*) Change-Id: I78f481b6c5ad9137e6b6973198e8671e806ee82c
-rw-r--r--build/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 3c09aa37d..91a64b504 100644
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -852,7 +852,7 @@ process_common_toolchain() {
# Handle darwin variants. Newer SDKs allow targeting older
# platforms, so use the newest one available.
case ${toolchain} in
- arm*-darwin-)
+ arm*-darwin-*)
add_cflags "-miphoneos-version-min=${IOS_VERSION_MIN}"
iphoneos_sdk_dir="$(show_darwin_sdk_path iphoneos)"
if [ -d "${iphoneos_sdk_dir}" ]; then