diff options
author | 2005-08-21 19:06:57 +0000 | |
---|---|---|
committer | 2005-08-21 19:06:57 +0000 | |
commit | f6cc897817f210c6035aaad2436fc009386a355f (patch) | |
tree | 8ee3280e1a005839c03b0cd3d21709266ac5176c /eclass | |
parent | Fixed broken patches (diff) | |
download | gentoo-2-f6cc897817f210c6035aaad2436fc009386a355f.tar.gz gentoo-2-f6cc897817f210c6035aaad2436fc009386a355f.tar.bz2 gentoo-2-f6cc897817f210c6035aaad2436fc009386a355f.zip |
make sure we only glob numbers, not . #103246
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index 868b74e88179..4ab2bedff9e6 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.52 2005/08/21 06:26:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.53 2005/08/21 19:06:57 vapier Exp $ # # Author: vapier@gentoo.org @@ -23,9 +23,10 @@ if [[ ${PV/9999} != ${PV} ]] ; then inherit cvs elif [[ ${PV/.200?????/} != ${PV} ]] ; then ECVS_STATE="snap" -elif [[ ${PV%%.0??} != ${PV} ]] ; then +elif [[ ${PV%%.[0-9][0-9][0-9]} != ${PV} ]] ; then ECVS_STATE="snap" fi +einfo $PV == $ECVS_STATE DESCRIPTION="A DR17 production" HOMEPAGE="http://www.enlightenment.org/" |