gst-ffmpeg: fix --disable-yasm
authorTom Zanussi <tom.zanussi@linux.intel.com>
Mon, 8 Apr 2013 15:35:31 +0000 (10:35 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 8 Apr 2013 15:56:46 +0000 (16:56 +0100)
commit28a62f33af0504f08ac44b1f9cb09e794f99635c
tree0bd4dab9c5d56e3c9635005a3707c2ca55582b68
parent0943c9d7a736263647b8e102626b65bbec5455dc
gst-ffmpeg: fix --disable-yasm

The gst-ffmpeg build shows the following warning:

configure: WARNING: unrecognized options: --disable-yasm

which means that the following test in configure always fails and
--disable-yasm never gets passed to the embedded ffmpeg build:

'if test "x$disable_yasm" = "xyes"; then'
  embffmpeg_configure_args="$embffmpeg_configure_args --disable-yasm"

commit 4d309730 ['gst-ffmpeg: configure-fix patch used wrong test']
actually fixed the obviously backwards syntax by reversing the test -
prior to that, --disable-yasm would always unconditionally be passed
into the embedded ffmpeg config.

This fixes things so that the variable actually exists and makes the
test meaningful.

(From OE-Core rev: da9515621134c26e54f43b96cdad0c6e6c5876bf)

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/configure-fix.patch