diff options
| author | Changqing Li <changqing.li@windriver.com> | 2024-11-21 14:02:56 +0800 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2024-12-09 06:25:53 -0800 |
| commit | a0af85c8cf5d254a6cc19af800d7c56f5f1c9214 (patch) | |
| tree | a07ebe5468a3277b9ee6df71414b52158c371851 | |
| parent | 02847cd56f49db0d399d9f2467744321a919d2f0 (diff) | |
| download | poky-a0af85c8cf5d254a6cc19af800d7c56f5f1c9214.tar.gz | |
rxvt-unicode.inc: disable the terminfo installation by setting TIC to :
Without this change, TIC is the native tic in recipe-sysroot-native.
By default, native tic has set its default terminfo path to native path:
${datadir}/terminfo; $HOME/.terminfo
When sstate cache is used, the cached native tic's terminfo path could
be a path not exist on current host, then native tic will try to install
terminfo to HOME dir, cause host contamination.
Disable the terminfo installation by setting TIC to :
(From OE-Core rev: 571e50db36d2b4bac075d4025efbdfdb8548468b)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fe35ead2c3135a18c346e7baa31d34b15c3e2d95)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc b/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc index 5193eebb0b..95757dbd01 100644 --- a/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc +++ b/meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc | |||
| @@ -28,7 +28,8 @@ EXTRA_OECONF = "--enable-xim \ | |||
| 28 | --with-codesets=eu --enable-pointer-blank \ | 28 | --with-codesets=eu --enable-pointer-blank \ |
| 29 | --enable-text-blink --enable-rxvt-scroll \ | 29 | --enable-text-blink --enable-rxvt-scroll \ |
| 30 | --enable-combining --disable-perl \ | 30 | --enable-combining --disable-perl \ |
| 31 | --with-x=${STAGING_DIR_HOST}${prefix}" | 31 | --with-x=${STAGING_DIR_HOST}${prefix} \ |
| 32 | ac_cv_path_TIC=:" | ||
| 32 | 33 | ||
| 33 | PACKAGECONFIG ??= "" | 34 | PACKAGECONFIG ??= "" |
| 34 | PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification," | 35 | PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification," |
