index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
summary
refs
log
tree
commit
diff
path:
root
/
tools
/
xz
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Jo-Philipp Wich <jow@openwrt.org>
2012-08-12 12:34:30 +0000
committer
Jo-Philipp Wich <jow@openwrt.org>
2012-08-12 12:34:30 +0000
commit
cf1698c6370d6a64f5f70a2dc5652d1fbc62afc3
(
patch
)
tree
8dea115df7f768723281ea58c0ce7d0c4180182b
/
tools/xz
parent
095fe8743b64a47ea2b13642934348f914d2a2bb
(
diff
)
use HOST_STATIC_LINKING instead of hardcoding -static
SVN-Revision: 33140
Diffstat
(limited to 'tools/xz')
-rw-r--r--
tools/xz/Makefile
5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/xz/Makefile b/tools/xz/Makefile
index 41894e073c..b1698be99e 100644
--- a/
tools/xz/Makefile
+++ b/
tools/xz/Makefile
@@ -15,10 +15,11 @@ PKG_MD5SUM:=8d900b742b94fa9e708ca4f5a4b29003
include $(INCLUDE_DIR)/host-build.mk
-HOST_LDFLAGS += -static
+HOST_LDFLAGS += $(HOST_STATIC_LINKING)
define Host/Install
- $(MAKE) -C $(HOST_BUILD_DIR) install xzlinks="unxz xzcat" AM_LDFLAGS="-all-static"
+ $(MAKE) -C $(HOST_BUILD_DIR) install xzlinks="unxz xzcat" \
+ AM_LDFLAGS="$(if $(HOST_STATIC_LINKING),-all-static)"
endef
$(eval $(call HostBuild))