summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-27 12:13:28 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-05 23:37:04 +0000
commit498aed98519e30ef203ddd5c7f050036e56562ee (patch)
treecf45a35ec10d950764f4bb0dc92aa21d26176efb
parent367d883bc7cbebb287b666695acd38261b36d165 (diff)
downloadpoky-498aed98519e30ef203ddd5c7f050036e56562ee.tar.gz
ncurses: Don't put terminfo into the sysroot
This recudes the file count from ~2850 to ~100 which is a huge win for reducing build directory clutter, its unlikely anything uses the terminfo data or man pages in the sysroot. This is especially helpful as we usually end up with two copies of these sets of files. (From OE-Core rev: 7789eb844a1f0033cec7d7d42f1dd42d571cb6c2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 443633dfc20177ef88a388d96745675817510c99) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/ncurses/ncurses.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 630c5f26d6..7f1834f0dc 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -319,3 +319,8 @@ FILES_${PN}-terminfo-base = "\
319 319
320RSUGGESTS_${PN}-libtinfo = "${PN}-terminfo" 320RSUGGESTS_${PN}-libtinfo = "${PN}-terminfo"
321RRECOMMENDS_${PN}-libtinfo = "${PN}-terminfo-base" 321RRECOMMENDS_${PN}-libtinfo = "${PN}-terminfo-base"
322
323# Putting terminfo into the sysroot adds around 2800 files to
324# each recipe specific sysroot. We can live without this, particularly
325# as many recipes may have native and target copies.
326SYSROOT_DIRS_remove = "${datadir}"