diff mbox

[1/1] package/upx: fix build with host gcc 6.x

Message ID 20160616160554.21393-1-martin@barkynet.com
State Accepted
Headers show

Commit Message

Martin Bark June 16, 2016, 4:05 p.m. UTC
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 <martin@barkynet.com>
---
 package/upx/upx.mk | 1 +
 1 file changed, 1 insertion(+)

Comments

Thomas Petazzoni July 1, 2016, 2:18 p.m. UTC | #1
Hello,

On Thu, 16 Jun 2016 17:05:54 +0100, Martin Bark wrote:
> 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 <martin@barkynet.com>
> ---
>  package/upx/upx.mk | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

Thomas
diff mbox

Patch

diff --git a/package/upx/upx.mk b/package/upx/upx.mk
index 400d283..eaef275 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