blob: 38d306475eeeccd200774a839c39fcb29b7b7f0b [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From fd80c0599083013a1b583feba5d7473f52b35938 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 Makefile | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/Makefile b/Makefile
17index 8beff8f..047f02a 100644
18--- a/Makefile
19+++ b/Makefile
20@@ -8,7 +8,7 @@ LIBS?=
21 VERSION=0.2.2
22 CC?=gcc
23 CFLAGS?=-O2 -g -Wall
24-LDFLAGS=$(LIBS)
25+LDFLAGS+=$(LIBS)
26
27 ifeq ($(USE_GEOIP),yes)
28 ifeq ($(USE_DYN_GEOIP),yes)
29--
302.15.1
31