[oe-commits] [meta-openembedded] 02/03: spice: ignore all warnings not just address-of-packed-member

git at git.openembedded.org git at git.openembedded.org
Tue Oct 1 15:51:38 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit d002adaf59239e1c9c9e0144f312f6cd8b58fde7
Author: Martin Jansa <martin.jansa at gmail.com>
AuthorDate: Tue Oct 1 09:07:55 2019 +0000

    spice: ignore all warnings not just address-of-packed-member
    
    * with older native gcc on host this will break spice-native with:
      cc1: error: -Werror=address-of-packed-member: no option -Waddress-of-packed-member
      because older gcc doesn't recognize address-of-packed-member warning
      to work around this ignore them all
    
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-networking/recipes-support/spice/spice_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb
index 30e939a..5e6fbf6 100644
--- a/meta-networking/recipes-support/spice/spice_git.bb
+++ b/meta-networking/recipes-support/spice/spice_git.bb
@@ -37,7 +37,7 @@ DEPENDS_append_class-nativesdk = "nativesdk-openssl"
 export PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python"
 export PYTHONPATH="${PKG_CONFIG_SYSROOT_DIR}${libdir}/python2.7/site-packages"
 
-CFLAGS_append = " -Wno-error=address-of-packed-member"
+CFLAGS_append = " -Wno-error"
 
 PACKAGECONFIG_class-nativesdk = ""
 PACKAGECONFIG ?= "sasl"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list