diff options
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/sstrip | |
parent | 095fe8743b64a47ea2b13642934348f914d2a2bb (diff) | |
download | upstream-cf1698c6370d6a64f5f70a2dc5652d1fbc62afc3.tar.gz upstream-cf1698c6370d6a64f5f70a2dc5652d1fbc62afc3.tar.bz2 upstream-cf1698c6370d6a64f5f70a2dc5652d1fbc62afc3.zip |
use HOST_STATIC_LINKING instead of hardcoding -static
SVN-Revision: 33140
Diffstat (limited to 'tools/sstrip')
-rw-r--r-- | tools/sstrip/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index b10a2523c3..ea4c3e880f 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -11,7 +11,7 @@ PKG_NAME:=sstrip include $(INCLUDE_DIR)/host-build.mk define Host/Compile - $(HOSTCC) $(HOST_CFLAGS) -I./include -include endian.h -static -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c + $(HOSTCC) $(HOST_CFLAGS) -I./include -include endian.h $(HOST_STATIC_LINKING) -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c endef define Host/Install |