The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / mplayer / 0002-fix-cc-parsing.patch
1 [PATCH] mplayer: fix --cc= parsing if the value contains equal signs (=)
2
3 E.G. if -cc="$CROSS-gcc --sysroot=<SYSROOT>" is passed.
4
5 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
6 ---
7  configure |    2 +-
8  1 file changed, 1 insertion(+), 1 deletion(-)
9
10 Index: mplayer-32710/configure
11 ===================================================================
12 --- mplayer-32710.orig/configure
13 +++ mplayer-32710/configure
14 @@ -870,7 +870,7 @@
15      _target=$(echo $ac_option | cut -d '=' -f 2)
16      ;;
17    --cc=*)
18 -    _cc=$(echo $ac_option | cut -d '=' -f 2)
19 +    _cc=$(echo $ac_option | cut -d '=' -f 2-)
20      ;;
21    --host-cc=*)
22      _host_cc=$(echo $ac_option | cut -d '=' -f 2)