Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: php-ext-base-r1.eclass php-lib-r1.eclass phpconfutils.eclass
Date: Thu, 29 Nov 2007 23:12:18
Message-Id: E1IxsYH-0005f1-QO@stork.gentoo.org
1 jokey 07/11/29 23:12:13
2
3 Modified: php-ext-base-r1.eclass php-lib-r1.eclass
4 phpconfutils.eclass
5 Log:
6 more backticks fixes
7
8 Revision Changes Path
9 1.9 eclass/php-ext-base-r1.eclass
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/php-ext-base-r1.eclass?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/php-ext-base-r1.eclass?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/php-ext-base-r1.eclass?r1=1.8&r2=1.9
14
15 Index: php-ext-base-r1.eclass
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/eclass/php-ext-base-r1.eclass,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- php-ext-base-r1.eclass 1 Sep 2007 15:58:17 -0000 1.8
22 +++ php-ext-base-r1.eclass 29 Nov 2007 23:12:13 -0000 1.9
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-base-r1.eclass,v 1.8 2007/09/01 15:58:17 jokey Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-base-r1.eclass,v 1.9 2007/11/29 23:12:13 jokey Exp $
28 #
29 # Author: Tal Peer <coredumb@g.o>
30 # Author: Stuart Herbert <stuart@g.o>
31 @@ -118,8 +118,8 @@
32 # $3 - File to add to
33 # $4 - Sanitized text to output
34 php-ext-base-r1_addtoinifile() {
35 - if [[ ! -d `dirname $3` ]] ; then
36 - mkdir -p `dirname $3`
37 + if [[ ! -d $(dirname $3) ]] ; then
38 + mkdir -p $(dirname $3)
39 fi
40
41 # Are we adding the name of a section?
42 @@ -137,7 +137,7 @@
43 einfo "$4 to /$3"
44 fi
45
46 - insinto /`dirname $3`
47 + insinto /$(dirname $3)
48 doins "$3"
49 }
50
51
52
53
54 1.8 eclass/php-lib-r1.eclass
55
56 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/php-lib-r1.eclass?rev=1.8&view=markup
57 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/php-lib-r1.eclass?rev=1.8&content-type=text/plain
58 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/php-lib-r1.eclass?r1=1.7&r2=1.8
59
60 Index: php-lib-r1.eclass
61 ===================================================================
62 RCS file: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v
63 retrieving revision 1.7
64 retrieving revision 1.8
65 diff -u -r1.7 -r1.8
66 --- php-lib-r1.eclass 4 Sep 2007 18:44:02 -0000 1.7
67 +++ php-lib-r1.eclass 29 Nov 2007 23:12:13 -0000 1.8
68 @@ -1,6 +1,6 @@
69 # Copyright 1999-2007 Gentoo Foundation
70 # Distributed under the terms of the GNU General Public License v2
71 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v 1.7 2007/09/04 18:44:02 jokey Exp $
72 +# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v 1.8 2007/11/29 23:12:13 jokey Exp $
73 #
74 # Author: Stuart Herbert <stuart@g.o>
75 # Author: Luca Longinotti <chtekk@g.o>
76 @@ -54,7 +54,7 @@
77 shift
78
79 for x in $@ ; do
80 - SUBDIR="`dirname ${x}`"
81 + SUBDIR="$(dirname ${x})"
82 insinto "${PHP_LIB_DIR}/${SUBDIR}"
83 doins "${S_DIR}/${x}"
84 done
85
86
87
88 1.8 eclass/phpconfutils.eclass
89
90 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/phpconfutils.eclass?rev=1.8&view=markup
91 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/phpconfutils.eclass?rev=1.8&content-type=text/plain
92 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/phpconfutils.eclass?r1=1.7&r2=1.8
93
94 Index: phpconfutils.eclass
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/eclass/phpconfutils.eclass,v
97 retrieving revision 1.7
98 retrieving revision 1.8
99 diff -u -r1.7 -r1.8
100 --- phpconfutils.eclass 22 Nov 2007 21:52:12 -0000 1.7
101 +++ phpconfutils.eclass 29 Nov 2007 23:12:13 -0000 1.8
102 @@ -1,6 +1,6 @@
103 # Copyright 1999-2007 Gentoo Foundation
104 # Distributed under the terms of the GNU General Public License v2
105 -# $Header: /var/cvsroot/gentoo-x86/eclass/phpconfutils.eclass,v 1.7 2007/11/22 21:52:12 drac Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/eclass/phpconfutils.eclass,v 1.8 2007/11/29 23:12:13 jokey Exp $
107 #
108 # ########################################################################
109 #
110 @@ -34,7 +34,7 @@
111
112 phpconfutils_sort_flags() {
113 # Sort the list of auto-magically enabled USE flags
114 - PHPCONFUTILS_AUTO_USE="`echo ${PHPCONFUTILS_AUTO_USE} | tr '\040\010' '\012\012' | sort -u`"
115 + PHPCONFUTILS_AUTO_USE="$(echo ${PHPCONFUTILS_AUTO_USE} | tr '\040\010' '\012\012' | sort -u)"
116 }
117
118 # ========================================================================
119
120
121
122 --
123 gentoo-commits@g.o mailing list