diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2010-07-19 16:15:14 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2010-07-19 16:15:14 +0000 |
commit | 55e4cf6133edc25727e6ada444515ad6c9c009f7 (patch) | |
tree | bde9b595fa3713d3e3b44412728e999120f9aace /eclass/virtuoso.eclass | |
parent | Remove libass; fix ass description for use flags (diff) | |
download | historical-55e4cf6133edc25727e6ada444515ad6c9c009f7.tar.gz historical-55e4cf6133edc25727e6ada444515ad6c9c009f7.tar.bz2 historical-55e4cf6133edc25727e6ada444515ad6c9c009f7.zip |
Use defined mechanism (die) to terminate processing when invalid EAPI detected.
Diffstat (limited to 'eclass/virtuoso.eclass')
-rw-r--r-- | eclass/virtuoso.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/virtuoso.eclass b/eclass/virtuoso.eclass index 6622bf0ce7af..708e283ac406 100644 --- a/eclass/virtuoso.eclass +++ b/eclass/virtuoso.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/virtuoso.eclass,v 1.4 2010/05/12 17:59:02 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/virtuoso.eclass,v 1.5 2010/07/19 16:15:14 reavertm Exp $ # @ECLASS: virtuoso.eclass # @MAINTAINER: @@ -12,7 +12,7 @@ case ${EAPI:-0} in 2|3) : ;; - *) DEPEND='EAPI-TOO-OLD' ;; + *) die "EAPI=${EAPI} is not supported" ;; esac inherit base autotools flag-o-matic multilib |