mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
mc: fix reproducibility
It is probing into what options the /usr/bin/file executable does and does not support and bakes that into target binaries, so we need to use a deterministic one we build ourselves. (From OE-Core rev: 91bb0c4180b0e788b4483f836478b7de948029a0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
cae167c5ba
commit
47d982e36f
@@ -4,7 +4,7 @@ DESCRIPTION = "GNU Midnight Commander is a visual file manager, licensed under G
|
||||
LICENSE = "GPLv3"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=270bbafe360e73f9840bd7981621f9c2"
|
||||
SECTION = "console/utils"
|
||||
DEPENDS = "ncurses glib-2.0 util-linux"
|
||||
DEPENDS = "ncurses glib-2.0 util-linux file-replacement-native"
|
||||
RDEPENDS:${PN} = "ncurses-terminfo-base"
|
||||
RRECOMMENDS:${PN} = "ncurses-terminfo"
|
||||
|
||||
@@ -14,6 +14,10 @@ SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2 \
|
||||
"
|
||||
SRC_URI[sha256sum] = "2f52dd9c75c20d8eac7701bd3a8c6c125aaf8cdd9cf12b78ca50a0102b543407"
|
||||
|
||||
# remove at next version upgrade or when output changes
|
||||
PR = "r1"
|
||||
HASHEQUIV_HASH_VERSION .= ".2"
|
||||
|
||||
inherit autotools gettext pkgconfig
|
||||
|
||||
#
|
||||
@@ -25,6 +29,7 @@ PACKAGECONFIG[sftp] = "--enable-vfs-sftp,--disable-vfs-sftp,libssh2,"
|
||||
|
||||
CFLAGS:append:libc-musl = ' -DNCURSES_WIDECHAR=1 '
|
||||
EXTRA_OECONF = "--with-screen=ncurses --without-gpm-mouse --without-x --disable-configure-args"
|
||||
EXTRANATIVEPATH += "file-native"
|
||||
|
||||
CACHED_CONFIGUREVARS += "ac_cv_path_PERL='/usr/bin/env perl'"
|
||||
CACHED_CONFIGUREVARS += "ac_cv_path_PYTHON='/usr/bin/env python'"
|
||||
|
||||
Reference in New Issue
Block a user