diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2019-04-25 02:10:54 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-26 10:09:08 +0100 |
commit | 38e01f8b940571eba51cf8c41e92ca922969fe44 (patch) | |
tree | 3c04dea005e6fb8a1f65fd15fdecf2bc8de362bb /meta/recipes-support/vte | |
parent | 67886623d9728f2bd370fb55cea5ab39bcc429c1 (diff) | |
download | poky-38e01f8b940571eba51cf8c41e92ca922969fe44.tar.gz |
vte: move shell auto scripts into seperate package
It bugged me for a while that xfce4-terminal sets (tab-)title to 'Untitled'.
This is caused by bash variable PROMPT_COMMAND not set. vte ships /etc/profile.d/vte.sh
adding PROMPT_COMMAND and a function to handle.
Since
* not all consumers of 'libvte' are interested in this feature
* executable shipped by package 'vte' is not necessary for PROMPT_COMMAND support
create a seperate package.
Once applied patches for xfce4-terminal and gnome-terminal will be send.
(From OE-Core rev: c0bed1aa9549568a966d34d5a9e5902190f980cb)
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.56.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/vte/vte_0.56.1.bb b/meta/recipes-support/vte/vte_0.56.1.bb index 02b84c38d9..3585e9ce57 100644 --- a/meta/recipes-support/vte/vte_0.56.1.bb +++ b/meta/recipes-support/vte/vte_0.56.1.bb | |||
@@ -50,7 +50,8 @@ CFLAGS += "-D_GNU_SOURCE" | |||
50 | # Use libtool-cross (which has a hack to prevent that) instead. | 50 | # Use libtool-cross (which has a hack to prevent that) instead. |
51 | EXTRA_OEMAKE_class-target = "LIBTOOL=${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool" | 51 | EXTRA_OEMAKE_class-target = "LIBTOOL=${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool" |
52 | 52 | ||
53 | PACKAGES =+ "libvte" | 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 | 56 | ||
56 | BBCLASSEXTEND = "native nativesdk" | 57 | BBCLASSEXTEND = "native nativesdk" |