Gentoo Archives: gentoo-commits

From: "Sven Wegener (swegener)" <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: qt4.eclass
Date: Sat, 21 Jun 2008 15:12:55
Message-Id: E1KA4ll-0007wf-GZ@stork.gentoo.org
1 swegener 08/06/21 15:12:49
2
3 Modified: qt4.eclass
4 Log:
5 don't use command substitution, like all good boys do
6
7 Revision Changes Path
8 1.41 eclass/qt4.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4.eclass?rev=1.41&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4.eclass?rev=1.41&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4.eclass?r1=1.40&r2=1.41
13
14 Index: qt4.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v
17 retrieving revision 1.40
18 retrieving revision 1.41
19 diff -u -r1.40 -r1.41
20 --- qt4.eclass 15 May 2008 17:28:59 -0000 1.40
21 +++ qt4.eclass 21 Jun 2008 15:12:48 -0000 1.41
22 @@ -1,6 +1,6 @@
23 # Copyright 2005 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.40 2008/05/15 17:28:59 ingmar Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.41 2008/06/21 15:12:48 swegener Exp $
27
28 # @ECLASS: qt4.eclass
29 # @MAINTAINER:
30 @@ -50,14 +50,14 @@
31 4|4.0|4.0.0) VERSIONS="=${QTPKG}4*";;
32 4.1|4.1.0|4.2|4.2.0|4.3|4.3.0|4.4|4.4.0)
33 for x in ${QT4MAJORVERSIONS}; do
34 - if $(version_is_at_least "${MINVER}" "${x}"); then
35 + if version_is_at_least "${MINVER}" "${x}"; then
36 VERSIONS="${VERSIONS} =${QTPKG}${x}*"
37 fi
38 done
39 ;;
40 4*)
41 for x in ${QT4VERSIONS}; do
42 - if $(version_is_at_least "${MINVER}" "${x}"); then
43 + if version_is_at_least "${MINVER}" "${x}"; then
44 VERSIONS="${VERSIONS} =${QTPKG}${x}"
45 fi
46 done
47
48
49
50 --
51 gentoo-commits@l.g.o mailing list