[oe-commits] [meta-openembedded] 51/53: network-manager-applet: Remove all occurances of -Werror in makefiles

git at git.openembedded.org git at git.openembedded.org
Sat Jul 1 08:00:34 UTC 2017


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

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

commit 194322b550b42b0c4e607882284ed7d14f061432
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Wed Jun 28 21:52:53 2017 -0700

    network-manager-applet: Remove all occurances of -Werror in makefiles
    
    There are options like -Werror=foo which get trimmed to =foo and
    results in compiler fails
    
    Fixes
    
    | aarch64-bec-linux-gcc: error: =format-security: No such file or directory
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 .../network-manager-applet/network-manager-applet_1.4.4.bb              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.4.4.bb b/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.4.4.bb
index 5ad1070..8cec305 100644
--- a/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.4.4.bb
+++ b/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.4.4.bb
@@ -20,7 +20,7 @@ PACKAGECONFIG ??= ""
 do_configure_append() {
     # Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
     for i in $(find ${B} -name "Makefile") ; do
-        sed -i -e s:-Werror::g $i
+        sed -i -e s%-Werror[^[:space:]]*%%g $i
     done
 }
 

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


More information about the Openembedded-commits mailing list