diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-11-22 18:24:17 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-11-22 18:24:17 +0000 |
commit | bb0b6f013287185906c70334ebe293caae783fbd (patch) | |
tree | 7a3c8b369079a02ed2dbcf305f58caff7b5ab883 /eclass | |
parent | Remove perl-module_pkg_prerm (diff) | |
download | gentoo-2-bb0b6f013287185906c70334ebe293caae783fbd.tar.gz gentoo-2-bb0b6f013287185906c70334ebe293caae783fbd.tar.bz2 gentoo-2-bb0b6f013287185906c70334ebe293caae783fbd.zip |
Make calling perl-module_pkg_prerm trigger a real warning
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/perl-module.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 6347e83bee84..defb5e35678d 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1438 2014/11/22 02:38:21 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1439 2014/11/22 18:24:17 dilfridge Exp $ + + 22 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> perl-module.eclass: + Make calling perl-module_pkg_prerm trigger a real warning 22 Nov 2014; Sebastian Pipping <sping@gentoo.org> python-r1.eclass: Fix docs about REQUIRED_USE in python-r1 (bug #530086) diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index dce0ed5e81d9..de956b6a1443 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.156 2014/11/21 01:21:44 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.157 2014/11/22 18:24:17 dilfridge Exp $ # @ECLASS: perl-module.eclass # @MAINTAINER: @@ -362,7 +362,7 @@ perl-module_pkg_postinst() { # It does not do anything. Deprecated, to be removed. perl-module_pkg_prerm() { debug-print-function $FUNCNAME "$@" - eqawarn "perl-module.eclass: perl-module_pkg_prerm does not do anything and will be removed. Please remove the call." + ewarn "perl-module.eclass: perl-module_pkg_prerm does not do anything and will be removed. Please remove the call." } # @FUNCTION: perl-module_pkg_postrm |