]> git.pld-linux.org Git - packages/irqbalance.git/blob - irqbalance-opt.patch
- rel 6
[packages/irqbalance.git] / irqbalance-opt.patch
1 diff -urN irqbalance-0.55.org/Makefile irqbalance-0.55/Makefile
2 --- irqbalance-0.55.org/Makefile        2006-12-05 14:15:23.000000000 +0100
3 +++ irqbalance-0.55/Makefile    2006-12-13 17:55:44.632291750 +0100
4 @@ -1,11 +1,14 @@
5 -CFLAGS+=-g -Os -D_FORTIFY_SOURCE=2 -Wall -W `pkg-config --cflags glib-2.0` 
6 +
7 +OPT=-g -Os
8 +
9 +CFLAGS = $(OPT) -D_FORTIFY_SOURCE=2 -Wall -W `pkg-config --cflags glib-2.0`
10  
11  all: irqbalance
12  
13  LIBS=bitmap.o irqbalance.o cputree.o  procinterrupts.o irqlist.o placement.o activate.o network.o powermode.o numa.o classify.o
14  
15  irqbalance: .depend $(LIBS)
16 -       gcc  -g -O2 -D_FORTIFY_SOURCE=2 -Wall  `pkg-config --libs glib-2.0` $(LIBS) -o irqbalance 
17 +       $(CC) $(CFLAGS) $(LDFLAGS) -D_FORTIFY_SOURCE=2 -Wall $(LIBS) `pkg-config --libs glib-2.0` -o irqbalance 
18  
19  clean:
20         rm -f irqbalance *~ *.o .depend
This page took 0.028561 seconds and 3 git commands to generate.