summaryrefslogtreecommitdiff
path: root/package/iproute2
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2015-05-07 10:20:12 +0300
committerPeter Korsgaard <peter@korsgaard.com>2015-05-07 22:16:38 +0200
commitcebea9a0f482516e634ead0fce155b7d3af48230 (patch)
tree4d68573996e3b862c7ffc04aa5fcdffbe7245db7 /package/iproute2
parent4ec088dceccee0c090fe77b53e62d415b738b8ac (diff)
iproute2: fix static build
Fixes: http://autobuild.buildroot.net/results/a10/a107ac3252ad48732069ec0de6ff8692b32c6a71/ http://autobuild.buildroot.net/results/e27/e2785a35bc6bc63d5da77e406e589889e7d39055/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/iproute2')
-rw-r--r--package/iproute2/iproute2.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/iproute2/iproute2.mk b/package/iproute2/iproute2.mk
index 102a222da..9595165ec 100644
--- a/package/iproute2/iproute2.mk
+++ b/package/iproute2/iproute2.mk
@@ -61,7 +61,8 @@ define IPROUTE2_BUILD_CMDS
$(SED) 's/$$(CCOPTS)//' $(@D)/netem/Makefile
$(TARGET_MAKE_ENV) $(MAKE) \
DBM_INCLUDE="$(STAGING_DIR)/usr/include" \
- CCOPTS="$(TARGET_CFLAGS) -D_GNU_SOURCE" -C $(@D)
+ CCOPTS="$(TARGET_CFLAGS) -D_GNU_SOURCE" \
+ SHARED_LIBS="$(if $(BR2_STATIC_LIBS),n,y)" -C $(@D)
endef
define IPROUTE2_INSTALL_TARGET_CMDS