mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
configure: fix handling of the input AS var passed to ffmpeg
Store the original AS environment variable passed to configure correctly, and export it so it's actually available to the sub-process when configuring the embedded ffmpeg
This commit is contained in:
parent
fce1bb56e2
commit
7f11e32e8b
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,7 @@ GST_API_VERSION=1.0
|
|||
AC_SUBST(GST_API_VERSION)
|
||||
|
||||
dnl *** Check for external $AS vs detected by AS_LIBTOOL
|
||||
user_AS="$AS"
|
||||
orig_AS="$AS"
|
||||
AG_GST_LIBTOOL_PREPARE
|
||||
AS_LIBTOOL(GST, 1500, 0, 1500)
|
||||
|
||||
|
@ -406,6 +406,7 @@ else
|
|||
|
||||
if test x"$orig_AS" != x; then
|
||||
emblibav_configure_args="$emblibav_configure_args --as=\\\"\\\$orig_AS\\\""
|
||||
export orig_AS
|
||||
elif test x"$CC" != x; then
|
||||
dnl No external $AS - try $CC for the libav assembler
|
||||
emblibav_configure_args="$emblibav_configure_args --as=\\\"\\\$CC\\\""
|
||||
|
|
Loading…
Reference in a new issue