diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-07-19 20:19:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-07-19 20:19:18 +0000 |
commit | 9eb03cc6d7c049c130c540c6f675c69780fe3d4f (patch) | |
tree | 081a016bd863df48ea245834edbc99715670bc5b | |
parent | switch to eshopts_{push,pop} from eutils (diff) | |
download | historical-9eb03cc6d7c049c130c540c6f675c69780fe3d4f.tar.gz historical-9eb03cc6d7c049c130c540c6f675c69780fe3d4f.tar.bz2 historical-9eb03cc6d7c049c130c540c6f675c69780fe3d4f.zip |
drop system libc re-emerge message for linux-headers #328317
-rw-r--r-- | eclass/kernel-2.eclass | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index ad2015aa514e..bf331cf33062 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.236 2010/06/05 18:49:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.237 2010/07/19 20:19:18 vapier Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -758,14 +758,6 @@ postinst_sources() { fi } -postinst_headers() { - elog "Kernel headers are usually only used when recompiling your system libc, as" - elog "such, following the installation of newer headers, it is advised that you" - elog "re-merge your system libc." - elog "Failure to do so will cause your system libc to not make use of newer" - elog "features present in the updated kernel headers." -} - # pkg_setup functions #============================================================== setup_headers() { @@ -1159,7 +1151,6 @@ kernel-2_src_install() { } kernel-2_pkg_postinst() { - [[ ${ETYPE} == headers ]] && postinst_headers [[ ${ETYPE} == sources ]] && postinst_sources } |