diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-27 12:13:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-11 17:46:11 +0000 |
commit | e9217245ee03b3477b9eda36984aac96c70be079 (patch) | |
tree | bf3c1b87a9aedbd47f0001b7bba50189d3298788 /meta/recipes-core | |
parent | 5b7bb2d5e0955db7f4de9a91b7e03e92e9399251 (diff) | |
download | poky-e9217245ee03b3477b9eda36984aac96c70be079.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: cb254debc36acc085a90c665f72ecf3a28692944)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 443633dfc20177ef88a388d96745675817510c99)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index fe4e8a5d6e..ef59bc3b0a 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -324,3 +324,8 @@ FILES_${PN}-terminfo-base = "\ | |||
324 | 324 | ||
325 | RSUGGESTS_${PN}-libtinfo = "${PN}-terminfo" | 325 | RSUGGESTS_${PN}-libtinfo = "${PN}-terminfo" |
326 | RRECOMMENDS_${PN}-libtinfo = "${PN}-terminfo-base" | 326 | RRECOMMENDS_${PN}-libtinfo = "${PN}-terminfo-base" |
327 | |||
328 | # Putting terminfo into the sysroot adds around 2800 files to | ||
329 | # each recipe specific sysroot. We can live without this, particularly | ||
330 | # as many recipes may have native and target copies. | ||
331 | SYSROOT_DIRS_remove = "${datadir}" | ||