mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-shells/bash: add whitelist for false positive configure implicit decls
makedev isn't supposed to exist where it is being checked here, but the check itself vanishes in modern autoconf, and is thus unneeded for bash 5.2+. Whitelist it just for the current version, which predates that. Closes: https://bugs.gentoo.org/916480 Signed-off-by: Eli Schwartz <eschwartz93@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -88,6 +88,12 @@ BDEPEND="
|
||||
# EAPI 8 tries to append it but it doesn't exist here.
|
||||
QA_CONFIGURE_OPTIONS="--disable-static"
|
||||
|
||||
QA_CONFIG_IMPL_DECL_SKIP+=(
|
||||
# this is fixed in autoconf 2.71, used in bash 5.2. The check fails
|
||||
# regardless of GCC version. bug #916480
|
||||
makedev
|
||||
)
|
||||
|
||||
PATCHES=(
|
||||
#"${WORKDIR}"/${PN}-${GENTOO_PATCH_VER}/
|
||||
|
||||
|
||||
@@ -96,6 +96,12 @@ BDEPEND="sys-devel/bison
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
QA_CONFIG_IMPL_DECL_SKIP+=(
|
||||
# this is fixed in autoconf 2.71, used in bash 5.2. The check fails
|
||||
# regardless of GCC version. bug #916480
|
||||
makedev
|
||||
)
|
||||
|
||||
PATCHES=(
|
||||
# Patches from Chet sent to bashbug ml
|
||||
"${WORKDIR}"/${PN}-${GENTOO_PATCH_VER}-patches/${PN}-5.0-syslog-history-extern.patch
|
||||
|
||||
Reference in New Issue
Block a user