diff options
author | Caleb Tennis <caleb@gentoo.org> | 2005-06-30 13:29:51 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2005-06-30 13:29:51 +0000 |
commit | 302d3303b04f397665a3d2c89d33cb4490054bc5 (patch) | |
tree | 902e548591092baebf69e45a375191498d2bb6c6 /eclass | |
parent | get rid of test statements (diff) | |
download | gentoo-2-302d3303b04f397665a3d2c89d33cb4490054bc5.tar.gz gentoo-2-302d3303b04f397665a3d2c89d33cb4490054bc5.tar.bz2 gentoo-2-302d3303b04f397665a3d2c89d33cb4490054bc5.zip |
handle 3.0 version more gracefull
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/qt.eclass b/eclass/qt.eclass index a072719727ea..f5d948ea1930 100644 --- a/eclass/qt.eclass +++ b/eclass/qt.eclass @@ -1,6 +1,6 @@ # Copyright 2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt.eclass,v 1.3 2005/06/30 13:29:13 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt.eclass,v 1.4 2005/06/30 13:29:51 caleb Exp $ # # Author Caleb Tennis <caleb@gentoo.org> # @@ -29,9 +29,9 @@ qt3_min_version_list() { local VERSIONS="" case $MINVER in - 3) VERSIONS="${QTPKG}3*";; - 3.0) VERSIONS="${QTPKG}3*";; - 3.0.0) VERSIONS="${QTPKG}3*";; + 3) VERSIONS="=${QTPKG}3*";; + 3.0) VERSIONS="=${QTPKG}3*";; + 3.0.0) VERSIONS="=${QTPKG}3*";; *) for x in $QT3VERSIONS; do if $(version_is_at_least $MINVER $x); then |