diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 19:26:28 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 19:26:28 +0000 |
commit | 739b17763770fc90d35445476733c845d4730c2d (patch) | |
tree | c5f5f98226143f31122d36e37bb9d7aab18a2d5c | |
parent | bf593adbc71d8cfdd4ffa6eaf5c327702b245cbf (diff) | |
download | master-187ad058-739b17763770fc90d35445476733c845d4730c2d.tar.gz master-187ad058-739b17763770fc90d35445476733c845d4730c2d.tar.bz2 master-187ad058-739b17763770fc90d35445476733c845d4730c2d.zip |
[tools] genext2fs: link statically
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33093 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | tools/genext2fs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/genext2fs/Makefile b/tools/genext2fs/Makefile index 1f69b2a6b6..2462b8cd8a 100644 --- a/tools/genext2fs/Makefile +++ b/tools/genext2fs/Makefile @@ -36,6 +36,7 @@ HOST_CONFIGURE_ARGS = \ define Host/Compile $(MAKE) -C $(HOST_BUILD_DIR) \ CFLAGS="$(HOST_CFLAGS)" \ + LDFLAGS="$(HOST_LDFLAGS) -static" \ all endef |