diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 00:00:43 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 00:00:43 +0000 |
commit | f7e56763e12bdff2261929bbcb691e770341d043 (patch) | |
tree | cb0044ff6c628138051f7aedd18077393b5d5ed6 /tools/lzma/Makefile | |
parent | 5f65074523fa53a2599a868269a20f5971bc7797 (diff) | |
download | upstream-f7e56763e12bdff2261929bbcb691e770341d043.tar.gz upstream-f7e56763e12bdff2261929bbcb691e770341d043.tar.bz2 upstream-f7e56763e12bdff2261929bbcb691e770341d043.zip |
tools: remove static linking support
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44285
Diffstat (limited to 'tools/lzma/Makefile')
-rw-r--r-- | tools/lzma/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lzma/Makefile b/tools/lzma/Makefile index 6e01051a3a..4922f8087f 100644 --- a/tools/lzma/Makefile +++ b/tools/lzma/Makefile @@ -21,8 +21,8 @@ UTIL_DIR=$(HOST_BUILD_DIR)/C/LzmaUtil ALONE_DIR=$(HOST_BUILD_DIR)/CPP/7zip/Compress/LZMA_Alone define Host/Compile - $(MAKE) -C $(UTIL_DIR) -f makefile.gcc LDFLAGS="$(HOST_STATIC_LINKING)" - $(MAKE) -C $(ALONE_DIR) -f makefile.gcc LDFLAGS="$(HOST_STATIC_LINKING)" + $(MAKE) -C $(UTIL_DIR) -f makefile.gcc + $(MAKE) -C $(ALONE_DIR) -f makefile.gcc endef define Host/Install |