summaryrefslogtreecommitdiffstats
path: root/tools/upx
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-10-21 11:31:25 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-10-21 11:31:25 +0000
commit758419deb198c2a6a3db0f3028c8eb41ef604fd9 (patch)
treecf687eb048e851d91ee16159811e5caa7db6c091 /tools/upx
parentf85eb6d428598db0d0c0e4b9e94d8d0bcab0f512 (diff)
[tools] upx: fix build error
g++ -O2 -Wall -W -Wcast-align -Wcast-qual -Wpointer-arith -Wshadow -Wwrite-strings -Werror -o compress.o -c compress.cpp cc1plus: warnings being treated as errors compress.cpp:75: error: unused parameter 'src' ... git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28500 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/upx')
-rw-r--r--tools/upx/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/upx/Makefile b/tools/upx/Makefile
index 0a805f0a4..2f3313ca3 100644
--- a/tools/upx/Makefile
+++ b/tools/upx/Makefile
@@ -20,7 +20,8 @@ include $(INCLUDE_DIR)/host-build.mk
define Host/Compile
rm -f $(HOST_BUILD_DIR)/src/.depend
- $(MAKE) UPX_LZMADIR="$(BUILD_DIR_HOST)/lzma-4.65" -C $(HOST_BUILD_DIR)/src
+ $(MAKE) UPX_LZMADIR="$(BUILD_DIR_HOST)/lzma-4.65" -C $(HOST_BUILD_DIR)/src \
+ CXXFLAGS_WERROR=
endef
define Host/Install