From: Martin Bark Date: Thu, 16 Jun 2016 16:05:54 +0000 (+0100) Subject: package/upx: fix build with host gcc 6.x X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8f7203cd5453c93b6b1d6afb9ce4634ec0d9ac7a;p=buildroot.git package/upx: fix build with host gcc 6.x Disable the -Werror gcc option because is causes the following error when using gcc 6.x on the host. p_vmlinx.cpp:100:5: error: this ‘if’ clause does not guard... [-Werror=misleading-indentation] if (a->p_paddr > b->p_paddr) return 1; Signed-off-by: Martin Bark Signed-off-by: Thomas Petazzoni --- diff --git a/package/upx/upx.mk b/package/upx/upx.mk index 400d28328d..eaef27590a 100644 --- a/package/upx/upx.mk +++ b/package/upx/upx.mk @@ -17,6 +17,7 @@ HOST_UPX_DEPENDENCIES = host-ucl host-zlib define HOST_UPX_BUILD_CMDS $(HOST_MAKE_ENV) $(MAKE) CPPFLAGS="$(HOST_CPPFLAGS)" \ LDFLAGS="$(HOST_LDFLAGS)" UPX_UCLDIR=$(HOST_DIR)/usr \ + CXXFLAGS_WERROR= \ -C $(@D) all endef