From 02c0e82dd682f70562afee2b6c9b504b199b5db1 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 29 Jun 2012 16:27:41 +0200 Subject: input-tools: use provided linker flags as well Signed-off-by: Peter Korsgaard --- package/input-tools/input-tools.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/input-tools/input-tools.mk b/package/input-tools/input-tools.mk index 38db2ea54..4236c7408 100644 --- a/package/input-tools/input-tools.mk +++ b/package/input-tools/input-tools.mk @@ -24,10 +24,12 @@ INPUT_TOOLS_POST_PATCH_HOOKS = INPUT_TOOLS_DEBIAN_PATCHES # jscal needs -lm define INPUT_TOOLS_BUILD_CMDS for i in $(filter-out jscal,$(INPUT_TOOLS_TARGETS_y)); do \ - $(TARGET_CC) $(TARGET_CFLAGS) -o $(@D)/$$i $(@D)/utils/$$i.c; \ + $(TARGET_CC) $(TARGET_CFLAGS) -o $(@D)/$$i $(@D)/utils/$$i.c \ + $(TARGET_LDFLAGS); \ done for i in $(filter jscal,$(INPUT_TOOLS_TARGETS_y)); do \ - $(TARGET_CC) $(TARGET_CFLAGS) -o $(@D)/$$i $(@D)/utils/$$i.c -lm; \ + $(TARGET_CC) $(TARGET_CFLAGS) -o $(@D)/$$i $(@D)/utils/$$i.c \ + $(TARGET_LDFLAGS) -lm; \ done endef -- cgit v1.2.3