summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stakenvicius <axs@gentoo.org>2016-04-21 13:28:08 -0400
committerIan Stakenvicius <axs@gentoo.org>2016-04-21 13:28:37 -0400
commit18d7d0aecb036a21a0a2f5d03c696d2299d49d24 (patch)
treee63442d71399c055eab48ab2d2064761e6e32f13 /media-video
parentmedia-libs/phonon-gstreamer: version bump (diff)
downloadgentoo-18d7d0aecb036a21a0a2f5d03c696d2299d49d24.tar.gz
gentoo-18d7d0aecb036a21a0a2f5d03c696d2299d49d24.tar.bz2
gentoo-18d7d0aecb036a21a0a2f5d03c696d2299d49d24.zip
media-video/ffmpeg: fix mingw32 CHOST match in src_configure
The CHOST-matct was mingw32* but in a crossdev mingw32 is usually the CHOST's suffix. Adusted the case statement match to be "*mingw32*" , following the same pattern as the others. Aballier gave the nod for the commit. Package-Manager: portage-2.2.26
Diffstat (limited to 'media-video')
-rw-r--r--media-video/ffmpeg/ffmpeg-2.8.6.ebuild2
-rw-r--r--media-video/ffmpeg/ffmpeg-3.0.1.ebuild2
-rw-r--r--media-video/ffmpeg/ffmpeg-9999.ebuild2
3 files changed, 3 insertions, 3 deletions
diff --git a/media-video/ffmpeg/ffmpeg-2.8.6.ebuild b/media-video/ffmpeg/ffmpeg-2.8.6.ebuild
index aa6bcd4fa2cf..7029e07823a7 100644
--- a/media-video/ffmpeg/ffmpeg-2.8.6.ebuild
+++ b/media-video/ffmpeg/ffmpeg-2.8.6.ebuild
@@ -393,7 +393,7 @@ multilib_src_configure() {
*freebsd*)
myconf+=( --target-os=freebsd )
;;
- mingw32*)
+ *mingw32*)
myconf+=( --target-os=mingw32 )
;;
*linux*)
diff --git a/media-video/ffmpeg/ffmpeg-3.0.1.ebuild b/media-video/ffmpeg/ffmpeg-3.0.1.ebuild
index fd5dd6f44171..6abf75cef9a4 100644
--- a/media-video/ffmpeg/ffmpeg-3.0.1.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.0.1.ebuild
@@ -394,7 +394,7 @@ multilib_src_configure() {
*freebsd*)
myconf+=( --target-os=freebsd )
;;
- mingw32*)
+ *mingw32*)
myconf+=( --target-os=mingw32 )
;;
*linux*)
diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild
index de85203c2196..5a5c2e00f4a5 100644
--- a/media-video/ffmpeg/ffmpeg-9999.ebuild
+++ b/media-video/ffmpeg/ffmpeg-9999.ebuild
@@ -393,7 +393,7 @@ multilib_src_configure() {
*freebsd*)
myconf+=( --target-os=freebsd )
;;
- mingw32*)
+ *mingw32*)
myconf+=( --target-os=mingw32 )
;;
*linux*)