blob: e95b6f993f0666b2de5bb8975ac82e58d063be2e [file] [log] [blame]
Brad Bishop15ae2502019-06-18 21:44:24 -04001From 7fd0e0b88df692dfc67335f235a1bb74854a0498 Mon Sep 17 00:00:00 2001
Brad Bishop316dfdd2018-06-25 12:45:53 -04002From: 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>
Brad Bishop15ae2502019-06-18 21:44:24 -040012
Brad Bishop316dfdd2018-06-25 12:45:53 -040013---
14 Makefile | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/Makefile b/Makefile
Brad Bishop15ae2502019-06-18 21:44:24 -040018index 54569c1..798988f 100644
Brad Bishop316dfdd2018-06-25 12:45:53 -040019--- a/Makefile
20+++ b/Makefile
21@@ -8,7 +8,7 @@ LIBS?=
Brad Bishop15ae2502019-06-18 21:44:24 -040022 VERSION=0.2.3
Brad Bishop316dfdd2018-06-25 12:45:53 -040023 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)