mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-10 04:30:00 +00:00
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@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
14af1771aa
commit
351bc35e25
+1
-2
@@ -24,7 +24,7 @@ EXTRA_OECONF += " \
|
|||||||
do_configure_append() {
|
do_configure_append() {
|
||||||
rm config.log
|
rm config.log
|
||||||
# Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
|
# 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
|
sed -i -e s:-Werror::g $i
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@@ -45,4 +45,3 @@ FILES_${PN} += "${libdir}/gnome-bluetooth/plugins/*.so"
|
|||||||
FILES_${PN}-dev += "${libdir}/gnome-bluetooth/plugins/libnma.la"
|
FILES_${PN}-dev += "${libdir}/gnome-bluetooth/plugins/libnma.la"
|
||||||
FILES_${PN}-staticdev += "${libdir}/gnome-bluetooth/plugins/libnma.a"
|
FILES_${PN}-staticdev += "${libdir}/gnome-bluetooth/plugins/libnma.a"
|
||||||
FILES_${PN}-dbg += "${libdir}/gnome-bluetooth/plugins/.debug/"
|
FILES_${PN}-dbg += "${libdir}/gnome-bluetooth/plugins/.debug/"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user