diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 19:26:30 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-10 19:26:30 +0000 |
commit | ea6c66131feecf7691ada796476f78381dde50e3 (patch) | |
tree | d939d16e7fc46c973c83e9a1fc4316e61ce56f3e /tools/lzma/Makefile | |
parent | d505def9ba6314206886995b416ae28bccf94d47 (diff) | |
download | upstream-ea6c66131feecf7691ada796476f78381dde50e3.tar.gz upstream-ea6c66131feecf7691ada796476f78381dde50e3.tar.bz2 upstream-ea6c66131feecf7691ada796476f78381dde50e3.zip |
lzma: link statically
SVN-Revision: 33094
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 4922f8087f..00ed3dc425 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 - $(MAKE) -C $(ALONE_DIR) -f makefile.gcc + $(MAKE) -C $(UTIL_DIR) -f makefile.gcc LDFLAGS="-static" + $(MAKE) -C $(ALONE_DIR) -f makefile.gcc LDFLAGS="-static" endef define Host/Install |