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 / 0003-fix-static-link.patch
1 ngrep: fix static link with pcre
2
3 Libraries must be placed after object files.
4
5 Signed-off-by: Romain Naour <romain.naour@openwide.fr>
6 ---
7  Makefile.in | 2 +-
8  1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/Makefile.in b/Makefile.in
11 index 2ae4506..761d7d9 100644
12 --- a/Makefile.in
13 +++ b/Makefile.in
14 @@ -11,7 +11,7 @@ CFLAGS=@CFLAGS@ -D@OS@ @DEFS@ @EXTRA_DEFINES@
15  INCLUDES=-I@srcdir@ @PCAP_INCLUDE@ @EXTRA_INCLUDES@
16  
17  LDFLAGS=@LDFLAGS@ @PCAP_LINK@
18 -LIBS=-lpcap @EXTRA_LIBS@ 
19 +LIBS=@LIBS@ @EXTRA_LIBS@
20  
21  STRIPFLAG=@STRIPFLAG@
22  
23 -- 
24 1.8.1.4
25