Skip to content

Commit

Permalink
media-video/ffmpeg: fix mingw32 CHOST match in src_configure
Browse files Browse the repository at this point in the history
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
  • Loading branch information
axs-gentoo committed Apr 21, 2016
1 parent 12f36bd commit 18d7d0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion media-video/ffmpeg/ffmpeg-2.8.6.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ multilib_src_configure() {
*freebsd*)
myconf+=( --target-os=freebsd )
;;
mingw32*)
*mingw32*)
myconf+=( --target-os=mingw32 )
;;
*linux*)
Expand Down
2 changes: 1 addition & 1 deletion media-video/ffmpeg/ffmpeg-3.0.1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ multilib_src_configure() {
*freebsd*)
myconf+=( --target-os=freebsd )
;;
mingw32*)
*mingw32*)
myconf+=( --target-os=mingw32 )
;;
*linux*)
Expand Down
2 changes: 1 addition & 1 deletion media-video/ffmpeg/ffmpeg-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ multilib_src_configure() {
*freebsd*)
myconf+=( --target-os=freebsd )
;;
mingw32*)
*mingw32*)
myconf+=( --target-os=mingw32 )
;;
*linux*)
Expand Down

0 comments on commit 18d7d0a

Please sign in to comment.