diff options
author | Ralph Sennhauser <sera@gentoo.org> | 2013-04-17 18:01:48 +0000 |
---|---|---|
committer | Ralph Sennhauser <sera@gentoo.org> | 2013-04-17 18:01:48 +0000 |
commit | 61e1cc75ee777a1603f27c5fda556b1aa60d8351 (patch) | |
tree | bbabf6e2783da78b1f4642fb694008ea88ae8e6f /eclass | |
parent | Fix LICENSE and add bindist restriction, bug 465274. (diff) | |
download | historical-61e1cc75ee777a1603f27c5fda556b1aa60d8351.tar.gz historical-61e1cc75ee777a1603f27c5fda556b1aa60d8351.tar.bz2 historical-61e1cc75ee777a1603f27c5fda556b1aa60d8351.zip |
Request package specific emerge --info in death hook.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/java-utils-2.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index ed4a795e6917..dc1a65a286ae 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.791 2013/04/17 13:52:17 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.792 2013/04/17 18:01:48 sera Exp $ + + 17 Apr 2013; Ralph Sennhauser <sera@gentoo.org> java-utils-2.eclass: + Request package specific emerge --info in death hook. 17 Apr 2013; Tom Wijsman <TomWij@gentoo.org> kernel-2.eclass: Added a warning after the variables that modifying other variables in diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 50da444ca206..ccf8db2dcbf2 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -6,7 +6,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.152 2013/01/16 19:06:15 sera Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.153 2013/04/17 18:01:48 sera Exp $ # ----------------------------------------------------------------------------- # @eclass-begin @@ -2724,7 +2724,7 @@ java-pkg_die() { echo "!!! When you file a bug report, please include the following information:" >&2 echo "GENTOO_VM=${GENTOO_VM} CLASSPATH=\"${CLASSPATH}\" JAVA_HOME=\"${JAVA_HOME}\"" >&2 echo "JAVACFLAGS=\"${JAVACFLAGS}\" COMPILER=\"${GENTOO_COMPILER}\"" >&2 - echo "and of course, the output of emerge --info" >&2 + echo "and of course, the output of emerge --info =${P}" >&2 } |