From: James Zern Date: Fri, 6 Dec 2019 21:18:37 +0000 (-0800) Subject: configure.sh,darwin: fix asm conv w/external build X-Git-Tag: v1.8.2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efa05b7cc9d922a6257358b9c5855c187e924d52;p=libvpx configure.sh,darwin: fix asm conv w/external build always set asm_conversion_cmd as e.g., vpx_config.asm may still be generated with make when using --enable-external-build BUG=webm:1535 Change-Id: I120452d4e06580b67119aee8d0a710998ac87a7a --- diff --git a/build/make/configure.sh b/build/make/configure.sh index fc00a3273..d05d0fa12 100644 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -1130,14 +1130,14 @@ EOF ;; esac - asm_conversion_cmd="${source_path}/build/make/ads2gas_apple.pl" - if [ "$(show_darwin_sdk_major_version iphoneos)" -gt 8 ]; then check_add_cflags -fembed-bitcode check_add_asflags -fembed-bitcode check_add_ldflags -fembed-bitcode fi fi + + asm_conversion_cmd="${source_path}/build/make/ads2gas_apple.pl" ;; linux*)