tools: remove static linking support
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 6 Feb 2015 00:00:43 +0000 (00:00 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 6 Feb 2015 00:00:43 +0000 (00:00 +0000)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44285

Makefile

index 83c51d7d906449084cfa2167144d6c5f628e8c11..c18024a302f443506ccb6c6f4f8c857992dc70fd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/host-build.mk
 include $(INCLUDE_DIR)/kernel.mk
 
 define cc
-       $(HOSTCC) $(HOST_CFLAGS) -include endian.h $(HOST_STATIC_LINKING) $(HOST_LDFLAGS) -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
+       $(HOSTCC) $(HOST_CFLAGS) -include endian.h $(HOST_LDFLAGS) -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
 endef
 
 define Host/Compile