diff options
author | Michael Cummings <mcummings@gentoo.org> | 2007-02-08 00:21:19 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2007-02-08 00:21:19 +0000 |
commit | c6ffdcf9ab0d93d513266af178aace5e600ab950 (patch) | |
tree | 32dc910738e1e4f2ba5350d4cb57fbfa9cd72289 /www-apache/mod_perl | |
parent | Add ftp-proxy, fixes bug 165846. (diff) | |
download | gentoo-2-c6ffdcf9ab0d93d513266af178aace5e600ab950.tar.gz gentoo-2-c6ffdcf9ab0d93d513266af178aace5e600ab950.tar.bz2 gentoo-2-c6ffdcf9ab0d93d513266af178aace5e600ab950.zip |
Switching from exit to die, thanks to davide angelocola on the ml for pointing this out
(Portage version: 2.1.2-r5)
Diffstat (limited to 'www-apache/mod_perl')
-rw-r--r-- | www-apache/mod_perl/ChangeLog | 7 | ||||
-rw-r--r-- | www-apache/mod_perl/mod_perl-2.0.3.ebuild | 12 |
2 files changed, 12 insertions, 7 deletions
diff --git a/www-apache/mod_perl/ChangeLog b/www-apache/mod_perl/ChangeLog index 823d9531bd74..539a051ea032 100644 --- a/www-apache/mod_perl/ChangeLog +++ b/www-apache/mod_perl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apache/mod_perl # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.35 2007/01/25 20:16:42 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.36 2007/02/08 00:21:19 mcummings Exp $ + + 08 Feb 2007; Michael Cummings <mcummings@gentoo.org> + mod_perl-2.0.3.ebuild: + Switching from exit to die, thanks to davide angelocola on the ml for + pointing this out 25 Jan 2007; Luca Longinotti <chtekk@gentoo.org> -files/mod_perl-1.99.16-sneak-tmpdir.patch, -files/2.0.1/75_mod_perl.conf, diff --git a/www-apache/mod_perl/mod_perl-2.0.3.ebuild b/www-apache/mod_perl/mod_perl-2.0.3.ebuild index 7d091c0ddf98..0e2d5cc2efd9 100644 --- a/www-apache/mod_perl/mod_perl-2.0.3.ebuild +++ b/www-apache/mod_perl/mod_perl-2.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.3.ebuild,v 1.1 2007/01/09 20:06:36 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.3.ebuild,v 1.2 2007/02/08 00:21:19 mcummings Exp $ inherit apache-module perl-module eutils multilib DESCRIPTION="An embedded Perl interpreter for Apache2" @@ -31,11 +31,11 @@ src_unpack() { ITHREADS="${useithreads}" if [ "${INSTALLED_MPM}" != "prefork" ]; then if [ "${ITHREADS}" == "undef" ]; then - ewarn "You cannot build mod_perl on a threaded apache" - ewarn "with an unthreaded perl. You must either emerge" - ewarn "perl with ithreads in your USE flags, or emerge" - ewarn "apache without threading support" - exit + eerror "You cannot build mod_perl on a threaded apache" + eerror "with an unthreaded perl. You must either emerge" + eerror "perl with ithreads in your USE flags, or emerge" + eerror "apache without threading support" + die fi fi |