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 / ngrep / 0001-make-objs.patch
1 ngrep: don't include regex objects since we're using pcre
2
3 Signed-off-by: Wade Berrier <wberrier@gmail.com>
4
5 --- ngrep-1.45/Makefile.in.orig 2006-11-28 06:35:37.000000000 -0700
6 +++ ngrep-1.45/Makefile.in      2011-06-29 14:05:27.000000000 -0600
7 @@ -32,13 +32,13 @@
8  
9  INSTALL = ./install-sh
10  
11 -REGEX_DIR=@REGEX_DIR@
12 -REGEX_OBJS=@REGEX_OBJS@
13 +REGEX_DIR=
14 +REGEX_OBJS=
15  
16  
17  all: $(TARGET) 
18  
19 -$(TARGET): $(REGEX_OBJS) $(OBJS) 
20 +$(TARGET): $(OBJS) 
21         $(CC) $(CFLAGS) $(LDFLAGS) $(STRIPFLAG) -o $(TARGET) $(OBJS) $(REGEX_OBJS) $(LIBS) 
22  
23  debug: $(REGEX_OBJS) $(OBJS)