diff options
author | Sven Wegener <swegener@gentoo.org> | 2008-06-21 15:12:48 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2008-06-21 15:12:48 +0000 |
commit | 3f6c0cb7c13529b900ade83c06b26360867f5e60 (patch) | |
tree | eb8506bc162294107ba17da966b331da8d5fd89e /eclass/qt4.eclass | |
parent | Stable on ppc wrt bug 228535 (diff) | |
download | historical-3f6c0cb7c13529b900ade83c06b26360867f5e60.tar.gz historical-3f6c0cb7c13529b900ade83c06b26360867f5e60.tar.bz2 historical-3f6c0cb7c13529b900ade83c06b26360867f5e60.zip |
don't use command substitution, like all good boys do
Diffstat (limited to 'eclass/qt4.eclass')
-rw-r--r-- | eclass/qt4.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/qt4.eclass b/eclass/qt4.eclass index d29a12f3d3c3..ed0490815468 100644 --- a/eclass/qt4.eclass +++ b/eclass/qt4.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/qt4.eclass,v 1.40 2008/05/15 17:28:59 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.41 2008/06/21 15:12:48 swegener Exp $ # @ECLASS: qt4.eclass # @MAINTAINER: @@ -50,14 +50,14 @@ qt4_min_version_list() { 4|4.0|4.0.0) VERSIONS="=${QTPKG}4*";; 4.1|4.1.0|4.2|4.2.0|4.3|4.3.0|4.4|4.4.0) for x in ${QT4MAJORVERSIONS}; do - if $(version_is_at_least "${MINVER}" "${x}"); then + if version_is_at_least "${MINVER}" "${x}"; then VERSIONS="${VERSIONS} =${QTPKG}${x}*" fi done ;; 4*) for x in ${QT4VERSIONS}; do - if $(version_is_at_least "${MINVER}" "${x}"); then + if version_is_at_least "${MINVER}" "${x}"; then VERSIONS="${VERSIONS} =${QTPKG}${x}" fi done |