diff options
author | 2022-09-28 21:16:36 +0100 | |
---|---|---|
committer | 2022-09-28 21:17:40 +0100 | |
commit | 00787a48517bca5dbf90d8b7be3289802f3cfe65 (patch) | |
tree | 7ef82a949fda4626224053df0779ad7fd2c3ab24 /sys-libs/ncurses | |
parent | app-admin/awscli: Stabilize 1.25.75 ALLARCHES, #873235 (diff) | |
download | gentoo-00787a48517bca5dbf90d8b7be3289802f3cfe65.tar.gz gentoo-00787a48517bca5dbf90d8b7be3289802f3cfe65.tar.bz2 gentoo-00787a48517bca5dbf90d8b7be3289802f3cfe65.zip |
sys-libs/ncurses: avoid egrep/fgrep deprecation warnings
Export EGREP & FGREP to avoid large configure noise (as we run it repeatedly).
Bug: https://lists.gnu.org/archive/html/bug-ncurses/2022-09/msg00024.html
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-libs/ncurses')
-rw-r--r-- | sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild | 4 | ||||
-rw-r--r-- | sys-libs/ncurses/ncurses-6.3_p20220924.ebuild | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild b/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild index 3f93d46bd575..f9e5093a7eb1 100644 --- a/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild +++ b/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild @@ -250,6 +250,10 @@ do_configure() { mkdir "${BUILD_DIR}/${target}" || die cd "${BUILD_DIR}/${target}" || die + # https://lists.gnu.org/archive/html/bug-ncurses/2022-09/msg00024.html + export EGREP="grep -E" + export FGREP="grep -F" + local conf=( # We need the basic terminfo files in /etc, bug #37026. We will # add '--with-terminfo-dirs' and then populate /etc/terminfo in diff --git a/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild b/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild index 4fcb647e26d7..9a7f05e0fcb6 100644 --- a/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild +++ b/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild @@ -250,6 +250,10 @@ do_configure() { mkdir "${BUILD_DIR}/${target}" || die cd "${BUILD_DIR}/${target}" || die + # https://lists.gnu.org/archive/html/bug-ncurses/2022-09/msg00024.html + export EGREP="grep -E" + export FGREP="grep -F" + local conf=( # We need the basic terminfo files in /etc, bug #37026. We will # add '--with-terminfo-dirs' and then populate /etc/terminfo in |