Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 08 Sep 2021 12:32:46
Message-Id: 1631104359.6d401e4f23a2c36905b7ab24937294efa5747aa5.mpagano@gentoo
1 commit: 6d401e4f23a2c36905b7ab24937294efa5747aa5
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 8 12:31:49 2021 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 8 12:32:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d401e4f
7
8 linux-info.eclass : Remove log references to linux 2.4 and gcc 4
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 eclass/linux-info.eclass | 15 ---------------
13 1 file changed, 15 deletions(-)
14
15 diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass
16 index f794f42d0c0..4e08949a385 100644
17 --- a/eclass/linux-info.eclass
18 +++ b/eclass/linux-info.eclass
19 @@ -963,21 +963,6 @@ linux-info_pkg_setup() {
20
21 linux-info_get_any_version
22
23 - if kernel_is 2 4; then
24 - if [ "$( gcc-major-version )" -eq "4" ] ; then
25 - echo
26 - ewarn "Be warned !! >=sys-devel/gcc-4.0.0 isn't supported with"
27 - ewarn "linux-2.4 (or modules building against a linux-2.4 kernel)!"
28 - echo
29 - ewarn "Either switch to another gcc-version (via gcc-config) or use a"
30 - ewarn "newer kernel that supports >=sys-devel/gcc-4."
31 - echo
32 - ewarn "Also, be aware that bug reports about gcc-4 not working"
33 - ewarn "with linux-2.4 based ebuilds will be closed as INVALID!"
34 - echo
35 - fi
36 - fi
37 -
38 [ -n "${CONFIG_CHECK}" ] && check_extra_config;
39 }