1From 7fd0e0b88df692dfc67335f235a1bb74854a0498 Mon Sep 17 00:00:00 2001
2From: Mariia Movchan <mmovchan@cisco.com>
3Date: Tue, 6 Mar 2018 16:03:39 +0200
4Subject: [PATCH] Makefile: pass extra linker flags
5
6Fixes
7ERROR: QA Issue: No GNU_HASH in the elf binary
8
9Upstream-Status: Pending
10
11Signed-off-by: Mariia Movchan <mmovchan@cisco.com>
12
13---
14 Makefile | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/Makefile b/Makefile
18index 54569c1..798988f 100644
19--- a/Makefile
20+++ b/Makefile
21@@ -8,7 +8,7 @@ LIBS?=
22 VERSION=0.2.3
23 CC?=gcc
24 CFLAGS?=-O2 -g -Wall
25-LDFLAGS=$(LIBS)
26+LDFLAGS+=$(LIBS)
27
28 ifeq ($(USE_GEOIP),yes)
29 ifeq ($(USE_DYN_GEOIP),yes)
30