python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / ngrep / 0003-fix-static-link.patch
blob98c262696d61158d24aa83a2ea9e490865673fbc
1 ngrep: fix static link with pcre
3 Libraries must be placed after object files.
5 Signed-off-by: Romain Naour <romain.naour@openwide.fr>
6 ---
7 Makefile.in | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
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@
17 LDFLAGS=@LDFLAGS@ @PCAP_LINK@
18 -LIBS=-lpcap @EXTRA_LIBS@
19 +LIBS=@LIBS@ @EXTRA_LIBS@
21 STRIPFLAG=@STRIPFLAG@
23 --
24 1.8.1.4