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 / mongrel2 / 0001-use-CC-variable-to-compile-procer.patch
1 From d30cf797af4828e49fd3c0f25841e669dec05ed5 Mon Sep 17 00:00:00 2001
2 From: Lionel Orry <lionel.orry@gmail.com>
3 Date: Wed, 27 Mar 2013 14:02:00 +0100
4 Subject: [PATCH 3/4] use CC variable to compile procer.
5
6 This fixes procer tool cross-compilation issues.
7
8 Signed-off-by: Lionel Orry <lionel.orry@gmail.com>
9 ---
10  tools/procer/Makefile | 2 +-
11  1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/tools/procer/Makefile b/tools/procer/Makefile
14 index d0d7de0..bb9aa31 100644
15 --- a/tools/procer/Makefile
16 +++ b/tools/procer/Makefile
17 @@ -8,7 +8,7 @@ all: procer
18  
19  
20  procer: ../../build/libm2.a ${OBJECTS}
21 -       gcc $(OPTFLAGS) $(OPTLIBS) -o $@ ${OBJECTS} ../../build/libm2.a ${LIBS}
22 +       $(CC) $(OPTFLAGS) $(OPTLIBS) -o $@ ${OBJECTS} ../../build/libm2.a ${LIBS}
23  
24  clean:
25         rm -f *.o procer
26 -- 
27 1.8.1.4
28