aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mkimage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-08-10 19:26:34 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-08-10 19:26:34 +0000
commiteb93c957dcc7fd0aadf6d34baceb0e0fdd7e8255 (patch)
treeba2aeb23b34979f1d4bbc75a8756a3f8b151b684 /tools/mkimage
parentbf886c05964c33c59e8dc1bf4896d53764db8c01 (diff)
downloadmaster-187ad058-eb93c957dcc7fd0aadf6d34baceb0e0fdd7e8255.tar.gz
master-187ad058-eb93c957dcc7fd0aadf6d34baceb0e0fdd7e8255.tar.bz2
master-187ad058-eb93c957dcc7fd0aadf6d34baceb0e0fdd7e8255.zip
[tools] mkimage: link statically
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33096 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/mkimage')
-rw-r--r--tools/mkimage/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile
index d4338e591f..e26d6b75c9 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" tools
+ $(MAKE) -C $(HOST_BUILD_DIR) BUILD_DIR= BIN_FILES-y="mkimage" HOSTLDFLAGS="-static" tools
endef
define Host/Install