diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2014-03-21 22:03:00 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2014-03-21 22:03:00 +0000 |
commit | 7cb0c9406d14885313505af36f20b4c4c2d59133 (patch) | |
tree | 683ef0055271fdbbe2aaed7cdfc7c13259d71dbc /eclass | |
parent | Bump to EAPI 5. (diff) | |
download | historical-7cb0c9406d14885313505af36f20b4c4c2d59133.tar.gz historical-7cb0c9406d14885313505af36f20b4c4c2d59133.tar.bz2 historical-7cb0c9406d14885313505af36f20b4c4c2d59133.zip |
linux-info: Bug #504346: Change one message from error to warning, kernel sources are optional for most uses (checking configs), and knowledge if the lack of kernel sources being missing is fatal should be left to the ebuild.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 7 | ||||
-rw-r--r-- | eclass/linux-info.eclass | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 7b2cbd66be28..4ce7af9ad8e1 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1181 2014/03/19 00:55:48 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1182 2014/03/21 22:03:00 robbat2 Exp $ + + 21 Mar 2014; Robin H. Johnson <robbat2@gentoo.org> linux-info.eclass: + linux-info: Bug #504346: Change one message from error to warning, kernel + sources are optional for most uses (checking configs), and knowledge if the + lack of kernel sources being missing is fatal should be left to the ebuild. 19 Mar 2014; Julian Ospald <hasufell@gentoo.org> mysql-cmake.eclass: respect CFLAGS wrt #497532 diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass index 36a3999244cd..f33c1c190629 100644 --- a/eclass/linux-info.eclass +++ b/eclass/linux-info.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.102 2013/09/29 02:49:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.103 2014/03/21 22:03:00 robbat2 Exp $ # @ECLASS: linux-info.eclass # @MAINTAINER: @@ -449,7 +449,7 @@ get_version() { then if [ -z "${get_version_warning_done}" ]; then get_version_warning_done=1 - qeerror "Unable to find kernel sources at ${KERNEL_DIR}" + qewarn "Unable to find kernel sources at ${KERNEL_DIR}" #qeinfo "This package requires Linux sources." if [ "${KERNEL_DIR}" == "/usr/src/linux" ] ; then qeinfo "Please make sure that ${KERNEL_DIR} points at your running kernel, " |