From: Ian Stakenvicius Date: Thu, 21 Apr 2016 17:28:08 +0000 (-0400) Subject: media-video/ffmpeg: fix mingw32 CHOST match in src_configure X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=18d7d0aecb036a21a0a2f5d03c696d2299d49d24;p=gentoo.git 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 --- 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*)