[MPlayer-cvslog] r24546 - trunk/configure

Benjamin Zores ben at geexbox.org
Sun Sep 16 19:58:51 CEST 2007


diego a écrit :
> Author: diego
> Date: Sun Sep 16 19:50:35 2007
> New Revision: 24546
> 
> Log:
> Merge three sed invocations into one.
> 
> 
> Modified:
>    trunk/configure
> 
> Modified: trunk/configure
> ==============================================================================
> --- trunk/configure	(original)
> +++ trunk/configure	Sun Sep 16 19:50:35 2007
> @@ -4222,9 +4222,7 @@ if test "$_vidix" = yes ; then
>    test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
>  
>    # some vidix drivers are not meant to work on powerpc, discard them
> -  ppc && _vidix_drivers=`echo $_vidix_drivers | sed s/cyberblade//`
> -  ppc && _vidix_drivers=`echo $_vidix_drivers | sed s/sis//`
> -  ppc && _vidix_drivers=`echo $_vidix_drivers | sed s/unichrome//`
> +  ppc && _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome//`

BTW, same _should_ apply to alpha but i can't test.
But these drivers will probably clash with vidix on alpha.

Ben




More information about the MPlayer-cvslog mailing list