[oe-commits] Ash Charles : network-manager-applet: fix S!=B error

git at git.openembedded.org git at git.openembedded.org
Tue Jun 10 10:44:03 UTC 2014


Module: meta-openembedded.git
Branch: master-next
Commit: 351bc35e25d8667d435232a0a76e2ab998f7043b
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=351bc35e25d8667d435232a0a76e2ab998f7043b

Author: Ash Charles <ashcharles at gmail.com>
Date:   Tue May 27 09:56:48 2014 -0700

network-manager-applet: fix S!=B error

The Makefile fixup in do_configure_append is in the build directory,
not the source directory.

Signed-off-by: Ash Charles <ashcharles at gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>

---

 .../network-manager-applet/network-manager-applet_0.9.8.0.bb           | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_0.9.8.0.bb b/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_0.9.8.0.bb
index 6c00283..8dbb3dc 100644
--- a/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_0.9.8.0.bb
+++ b/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_0.9.8.0.bb
@@ -24,7 +24,7 @@ EXTRA_OECONF += " \
 do_configure_append() {
     rm config.log
     # Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
-    for i in $(find ${S} -name "Makefile") ; do
+    for i in $(find ${B} -name "Makefile") ; do
         sed -i -e s:-Werror::g $i
     done
 }
@@ -45,4 +45,3 @@ FILES_${PN} += "${libdir}/gnome-bluetooth/plugins/*.so"
 FILES_${PN}-dev += "${libdir}/gnome-bluetooth/plugins/libnma.la"
 FILES_${PN}-staticdev += "${libdir}/gnome-bluetooth/plugins/libnma.a"
 FILES_${PN}-dbg += "${libdir}/gnome-bluetooth/plugins/.debug/"
-



More information about the Openembedded-commits mailing list