diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2019-10-01 09:07:55 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-10-01 08:51:19 -0700 |
| commit | d002adaf59239e1c9c9e0144f312f6cd8b58fde7 (patch) | |
| tree | 950c9cec2c88530292edb1482874f78c2c524e8d | |
| parent | 1f80fd9618efef1f6b0967f69afe88669a963e67 (diff) | |
| download | meta-openembedded-d002adaf59239e1c9c9e0144f312f6cd8b58fde7.tar.gz | |
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@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-networking/recipes-support/spice/spice_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb index 30e939ac07..5e6fbf6bad 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" | |||
| 37 | export PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" | 37 | export PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" |
| 38 | export PYTHONPATH="${PKG_CONFIG_SYSROOT_DIR}${libdir}/python2.7/site-packages" | 38 | export PYTHONPATH="${PKG_CONFIG_SYSROOT_DIR}${libdir}/python2.7/site-packages" |
| 39 | 39 | ||
| 40 | CFLAGS_append = " -Wno-error=address-of-packed-member" | 40 | CFLAGS_append = " -Wno-error" |
| 41 | 41 | ||
| 42 | PACKAGECONFIG_class-nativesdk = "" | 42 | PACKAGECONFIG_class-nativesdk = "" |
| 43 | PACKAGECONFIG ?= "sasl" | 43 | PACKAGECONFIG ?= "sasl" |
