diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2005-05-01 21:59:29 +0000 |
---|---|---|
committer | Fernando J. Pereda <ferdy@gentoo.org> | 2005-05-01 21:59:29 +0000 |
commit | f79a52603debcc298e86a4a656eb6e5afb505c8e (patch) | |
tree | 9ed6996cef95ed5939b9777f29f161cdc179813f /eclass | |
parent | Added mips64 selinux profile (diff) | |
download | gentoo-2-f79a52603debcc298e86a4a656eb6e5afb505c8e.tar.gz gentoo-2-f79a52603debcc298e86a4a656eb6e5afb505c8e.tar.bz2 gentoo-2-f79a52603debcc298e86a4a656eb6e5afb505c8e.zip |
use ~ in has_version
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mailer.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mailer.eclass b/eclass/mailer.eclass index d55c40ce9fcd..fcd80c4b013d 100644 --- a/eclass/mailer.eclass +++ b/eclass/mailer.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/mailer.eclass,v 1.6 2005/04/27 19:25:39 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mailer.eclass,v 1.7 2005/05/01 21:59:29 ferdy Exp $ # # Original Authors: Fernando J. Pereda <ferdy@gentoo.org> @@ -77,7 +77,7 @@ mailer_wipe_confs() { [[ ${i} == ${P} ]] && continue [[ ${i} == "default" ]] && continue - has_version "=mail-mta/${i}*" || rm ${x} + has_version "~mail-mta/${i}" || rm ${x} done eend 0 } |