From: Mark Hatle Date: Tue, 19 Mar 2013 20:17:48 +0000 (-0500) Subject: vte: Fix conflict between FILES_${PN}-dbg and FILES_vte-dbg X-Git-Tag: yocto-4.0~33480 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7846f68537a942d340d5931e23a4fceb84b6edcb;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git vte: Fix conflict between FILES_${PN}-dbg and FILES_vte-dbg Due to quarks with the way bitbake handles variable key values, the hard coded FILES_vte-dbg or automatic FILES_${PN}-dbg could replace each other, leaving the system in an inconsistent state. Signed-off-by: Mark Hatle Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/vte/vte.inc b/meta/recipes-support/vte/vte.inc index 6e435549280..b653fab279e 100644 --- a/meta/recipes-support/vte/vte.inc +++ b/meta/recipes-support/vte/vte.inc @@ -10,7 +10,7 @@ EXTRA_OECONF = "--disable-python --disable-introspection" PACKAGES =+ "libvte vte-termcap" FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper" -FILES_vte-dbg =+ "${libexecdir}/.debug ${prefix}/src ${bindir}/.debug \ +FILES_${PN}-dbg =+ "${libexecdir}/.debug ${prefix}/src ${bindir}/.debug \ ${libdir}/.debug" FILES_vte-termcap = "${datadir}/vte/termcap-0.0"