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-08 13:20:01 +0000 |
commit | 459e92aa938136897599958b53bb50ccbbaccf85 (patch) | |
tree | 91c2b83722b3345536bd4a9198ea41f5de5deea9 | |
parent | ad4f1d59e08017e14040261af00d5970d00de4a5 (diff) | |
download | poky-459e92aa938136897599958b53bb50ccbbaccf85.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)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 .. |