diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-03-19 15:17:48 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 17:07:17 +0000 |
commit | a45c9603be93706a98c75fec4141644d817186ae (patch) | |
tree | fa2ce58a81aff8009ccd837c284fa0ea8cf36041 /meta | |
parent | e66deb015674f2a95845b6f6722c460dc3ce0a1a (diff) | |
download | poky-a45c9603be93706a98c75fec4141644d817186ae.tar.gz |
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.
(From OE-Core rev: 7846f68537a942d340d5931e23a4fceb84b6edcb)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/vte/vte.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/vte/vte.inc b/meta/recipes-support/vte/vte.inc index 6e43554928..b653fab279 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" | |||
10 | 10 | ||
11 | PACKAGES =+ "libvte vte-termcap" | 11 | PACKAGES =+ "libvte vte-termcap" |
12 | FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper" | 12 | FILES_libvte = "${libdir}/*.so.* ${libexecdir}/gnome-pty-helper" |
13 | FILES_vte-dbg =+ "${libexecdir}/.debug ${prefix}/src ${bindir}/.debug \ | 13 | FILES_${PN}-dbg =+ "${libexecdir}/.debug ${prefix}/src ${bindir}/.debug \ |
14 | ${libdir}/.debug" | 14 | ${libdir}/.debug" |
15 | FILES_vte-termcap = "${datadir}/vte/termcap-0.0" | 15 | FILES_vte-termcap = "${datadir}/vte/termcap-0.0" |
16 | 16 | ||