1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-14 19:23:53 +02:00

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
This commit is contained in:
Nicolas Thill 2011-10-21 11:31:25 +00:00
parent 55aeabae10
commit 0eab6e2a7d

View File

@ -20,7 +20,8 @@ include $(INCLUDE_DIR)/host-build.mk
define Host/Compile define Host/Compile
rm -f $(HOST_BUILD_DIR)/src/.depend 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 endef
define Host/Install define Host/Install