aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-21 18:07:28 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-21 18:07:28 +0100
commit15bc64c6cd7d01be6c5e5aca2eca9e01ee4e099e (patch)
tree1c9c778e4bf40643c18a0f92e6dbe2f4a870d077
parent06c098e2cb368c5efdd770f293ca52a712f6221d (diff)
sysmobts: Honor the LDFLAGS when building the sysmobts-calib utility
Address warning during system builds. Addresses: WARNING: QA Issue: No GNU_HASH in the elf binary...
-rw-r--r--contrib/sysmobts-calib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/sysmobts-calib/Makefile b/contrib/sysmobts-calib/Makefile
index 9f16aee0..a5d4b995 100644
--- a/contrib/sysmobts-calib/Makefile
+++ b/contrib/sysmobts-calib/Makefile
@@ -4,7 +4,7 @@ LIBS=`pkg-config --libs libosmocore libosmogsm`
all: sysmobts-calib
sysmobts-calib: sysmobts-calib.o sysmobts-layer1.o
- $(CC) $(CPPFLAGS) -o $@ $^ -lrt $(LIBS)
+ $(CC) $(CPPFLAGS) $(LDFLAGS) -o $@ $^ -lrt $(LIBS)
clean:
@rm -f sysmobts-calib *.o