diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-07 15:09:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-11 23:05:13 +0000 |
commit | 6f559af29a5c470ab8fe8b23c0adb8a8cc6b1abd (patch) | |
tree | 1be78d985cfdc429df467a10e9031f3836504e08 /meta/recipes-core | |
parent | 82b2340edf7c5caef61f422167a04a4a3b51c31b (diff) | |
download | poky-6f559af29a5c470ab8fe8b23c0adb8a8cc6b1abd.tar.gz |
ncurses: Fix reproducibility issue
The build was deciding whether to rename manpages based upon the presence of
/etc/debian_version. Be explicit about the configuration instead and
ensure determinism.
[YOCTO #13781]
(From OE-Core rev: 09c8a28893e7ca94a44232d802e1cb02a8f34b87)
(From OE-Core rev: 3d114c08c32578426646f5d97769d2c66fea06cb)
(From OE-Core rev: 7bc68f7b946b1aaaafb161a57aa889b200abc2eb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index 5f2cc35823..b7bf4c0d81 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -87,6 +87,7 @@ ncurses_configure() { | |||
87 | --disable-rpath-hack \ | 87 | --disable-rpath-hack \ |
88 | ${EXCONFIG_ARGS} \ | 88 | ${EXCONFIG_ARGS} \ |
89 | --with-manpage-format=normal \ | 89 | --with-manpage-format=normal \ |
90 | --without-manpage-renames \ | ||
90 | --disable-stripping \ | 91 | --disable-stripping \ |
91 | "$@" || return 1 | 92 | "$@" || return 1 |
92 | cd .. | 93 | cd .. |