summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2019-12-06 13:18:37 -0800
committerJames Zern <jzern@google.com>2019-12-06 13:18:37 -0800
commitefa05b7cc9d922a6257358b9c5855c187e924d52 (patch)
tree39a5fc58c4068f7c476de289d5d2c839671ea21b /build
parentf835ab76082e8ea2e04901f1b9746c65e56f4218 (diff)
downloadlibvpx-efa05b7cc9d922a6257358b9c5855c187e924d52.tar
libvpx-efa05b7cc9d922a6257358b9c5855c187e924d52.tar.gz
libvpx-efa05b7cc9d922a6257358b9c5855c187e924d52.tar.bz2
libvpx-efa05b7cc9d922a6257358b9c5855c187e924d52.zip
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
Diffstat (limited to 'build')
-rw-r--r--build/make/configure.sh4
1 files changed, 2 insertions, 2 deletions
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*)