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 / latencytop / 0001-makefile.patch
1 Usee $(CC) to enable cross compiling and link to the right ncurses library.
2
3 Signed-off-by: Qais Yousef <qais.yousef@imgtec.com>
4
5 --- latencytop-0.5/Makefile.old 2012-04-18 11:59:39.748084334 +0100
6 +++ latencytop-0.5/Makefile     2012-04-18 12:00:08.659112340 +0100
7 @@ -4,7 +4,7 @@
8  DESTDIR =
9  SBINDIR = /usr/sbin
10  XCFLAGS = -W  -g `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare
11 -LDF = -Wl,--as-needed `pkg-config --libs glib-2.0`   -lncursesw 
12 +LDF = -Wl,--as-needed `pkg-config --libs glib-2.0`   -lncurses 
13  
14  OBJS= latencytop.o text_display.o translate.o fsync.o
15  
16 @@ -26,10 +26,10 @@
17  
18  # We write explicity this "implicit rule"
19  %.o : %.c
20 -       gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@
21 +       $(CC) -c $(CFLAGS) $(XCFLAGS) $< -o $@
22  
23  latencytop:  $(OBJS) latencytop.h Makefile
24 -       gcc $(CFLAGS) $(OBJS) $(LDF) -o latencytop 
25 +       $(CC) $(CFLAGS) $(OBJS) $(LDF) -o latencytop 
26  
27  clean:
28         rm -f *~ latencytop DEADJOE *.o