diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-19 15:02:47 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-19 15:02:47 +0000 |
commit | 725b0dfeb15446cd528037dce4dbb7d89c4fd6ba (patch) | |
tree | 83d6ea3e3b5ec6d6171fe7f65b529a5bbaf4c291 /eclass/qt4-r2.eclass | |
parent | Touchup postinst logic to be easier to read. (diff) | |
download | gentoo-2-725b0dfeb15446cd528037dce4dbb7d89c4fd6ba.tar.gz gentoo-2-725b0dfeb15446cd528037dce4dbb7d89c4fd6ba.tar.bz2 gentoo-2-725b0dfeb15446cd528037dce4dbb7d89c4fd6ba.zip |
Fixup die case for eapi in qt4-r2 and xorg-2 eclasses.
Diffstat (limited to 'eclass/qt4-r2.eclass')
-rw-r--r-- | eclass/qt4-r2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4-r2.eclass b/eclass/qt4-r2.eclass index 37c46e9b2d37..0d0ba1059e3b 100644 --- a/eclass/qt4-r2.eclass +++ b/eclass/qt4-r2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-r2.eclass,v 1.9 2010/12/30 23:46:39 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-r2.eclass,v 1.10 2011/03/19 15:02:47 scarabeus Exp $ # @ECLASS: qt4-r2.eclass # @MAINTAINER: @@ -15,7 +15,7 @@ case ${EAPI} in 2|3) : ;; - *) DEPEND="EAPI-INCOMPATIBLE" ;; + *) die "EAPI=${EAPI} is not supported" ;; esac inherit base eutils multilib toolchain-funcs |