diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-10-21 11:31:25 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-10-21 11:31:25 +0000 |
commit | 0eab6e2a7d89fab112142027f207bcc5546fece4 (patch) | |
tree | 9adf7bbbf1edc65df8036ae493ed99a141c42dce /tools | |
parent | 55aeabae10d9429de0453d6df4271426478b406b (diff) | |
download | upstream-0eab6e2a7d89fab112142027f207bcc5546fece4.tar.gz upstream-0eab6e2a7d89fab112142027f207bcc5546fece4.tar.bz2 upstream-0eab6e2a7d89fab112142027f207bcc5546fece4.zip |
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'
...
SVN-Revision: 28500
Diffstat (limited to 'tools')
-rw-r--r-- | tools/upx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/upx/Makefile b/tools/upx/Makefile index 0a805f0a4a..2f3313ca38 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 |