diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2020-06-02 20:37:10 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-04 13:27:31 +0100 |
commit | 57b49ced170e48df925b9993585655f417f55bca (patch) | |
tree | e299b5b93007cf707728607a7da12c4a55569aaa /meta/recipes-support/vte | |
parent | 9fef505804e33a32b99c8b5faeb5f69dc64dc60d (diff) | |
download | poky-57b49ced170e48df925b9993585655f417f55bca.tar.gz |
vte: Pack ${libexecdir}/vte-urlencode-cwd to vte-prompt
Have vte-prompt in my images. Since upgrade 0.60.2 all terminals complain with:
| bash: /usr/libexec/vte-urlencode-cwd: No such file or directory
Grepping sources shows that vte.csh and vte.sh are the only callers of
vte-urlencode-cwd. Both are installed by vte-prompt so move vte-urlencode-cwd
where it's used.
(From OE-Core rev: 1ea62721b1c06a77b18cf210ee437c292f58104b)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/vte')
-rw-r--r-- | meta/recipes-support/vte/vte_0.60.2.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-support/vte/vte_0.60.2.bb b/meta/recipes-support/vte/vte_0.60.2.bb index 4a33f6e4d0..8c7054913f 100644 --- a/meta/recipes-support/vte/vte_0.60.2.bb +++ b/meta/recipes-support/vte/vte_0.60.2.bb | |||
@@ -52,6 +52,9 @@ CFLAGS += "-D_GNU_SOURCE" | |||
52 | 52 | ||
53 | PACKAGES =+ "libvte ${PN}-prompt" | 53 | PACKAGES =+ "libvte ${PN}-prompt" |
54 | FILES_libvte = "${libdir}/*.so.* ${libdir}/girepository-1.0/*" | 54 | FILES_libvte = "${libdir}/*.so.* ${libdir}/girepository-1.0/*" |
55 | FILES_${PN}-prompt = "${sysconfdir}/profile.d" | 55 | FILES_${PN}-prompt = " \ |
56 | ${sysconfdir}/profile.d \ | ||
57 | ${libexecdir}/vte-urlencode-cwd \ | ||
58 | " | ||
56 | 59 | ||
57 | BBCLASSEXTEND = "native nativesdk" | 60 | BBCLASSEXTEND = "native nativesdk" |