shithub: libvpx

Download patch

ref: efa05b7cc9d922a6257358b9c5855c187e924d52
parent: f835ab76082e8ea2e04901f1b9746c65e56f4218
author: James Zern <jzern@google.com>
date: Fri Dec 6 08:18:37 EST 2019

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

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1130,8 +1130,6 @@
                 ;;
             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
@@ -1138,6 +1136,8 @@
               check_add_ldflags -fembed-bitcode
             fi
           fi
+
+          asm_conversion_cmd="${source_path}/build/make/ads2gas_apple.pl"
           ;;
 
         linux*)