diff options
author | 2012-07-18 14:59:29 +0000 | |
---|---|---|
committer | 2012-07-18 14:59:29 +0000 | |
commit | 2ebdab698a9b03302b1fef5264c36121ddb4dcd8 (patch) | |
tree | 2c4db0a408837037c5a0b81c5ac833f8da88e383 /eclass/webapp.eclass | |
parent | Version bump in SLOT 2. (diff) | |
download | historical-2ebdab698a9b03302b1fef5264c36121ddb4dcd8.tar.gz historical-2ebdab698a9b03302b1fef5264c36121ddb4dcd8.tar.bz2 historical-2ebdab698a9b03302b1fef5264c36121ddb4dcd8.zip |
Don't ebeep at even EAPI=3, bug #386555.
Diffstat (limited to 'eclass/webapp.eclass')
-rw-r--r-- | eclass/webapp.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 52d8c09784a4..991e9321fb23 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.71 2012/07/15 22:45:12 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.72 2012/07/18 14:59:29 blueness Exp $ # @ECLASS: webapp.eclass # @MAINTAINER: @@ -413,7 +413,7 @@ webapp_pkg_setup() { ewarn "This ebuild may be overwriting important files." ewarn echo - if has "${EAPI:-0}" 0 1 2 3; then + if has "${EAPI:-0}" 0 1 2; then ebeep 10 fi elif [[ "$(echo ${my_output} | awk '{ print $1 }')" != "${PN}" ]]; then |