diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-12 13:27:49 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-12 13:27:49 +0000 |
commit | 3cd5af40b38be1ee1a78b74c4177efc58f68d316 (patch) | |
tree | 55ac753baef40f1b56d061cdbb5ea4d185647da4 /tools/mkimage | |
parent | b35dab3480040f1b3da61838ada54ff496c649b5 (diff) | |
download | upstream-3cd5af40b38be1ee1a78b74c4177efc58f68d316.tar.gz upstream-3cd5af40b38be1ee1a78b74c4177efc58f68d316.tar.bz2 upstream-3cd5af40b38be1ee1a78b74c4177efc58f68d316.zip |
[tools] convert remaining tools to $(HOST_STATIC_LINKING) (#12012)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33148 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/mkimage')
-rw-r--r-- | tools/mkimage/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile index e26d6b75c9..373d9bebb8 100644 --- a/tools/mkimage/Makefile +++ b/tools/mkimage/Makefile @@ -21,7 +21,7 @@ include $(INCLUDE_DIR)/host-build.mk define Host/Compile rm -f $(HOST_BUILD_DIR)/tools/.depend touch $(HOST_BUILD_DIR)/include/config.h - $(MAKE) -C $(HOST_BUILD_DIR) BUILD_DIR= BIN_FILES-y="mkimage" HOSTLDFLAGS="-static" tools + $(MAKE) -C $(HOST_BUILD_DIR) BUILD_DIR= BIN_FILES-y="mkimage" HOSTLDFLAGS="$(HOST_STATIC_LINKING)" tools endef define Host/Install |