Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: zproduct.eclass
Date: Thu, 26 Feb 2009 14:25:45
Message-Id: E1LchBI-0000Vz-Da@stork.gentoo.org
1 tupone 09/02/26 14:25:44
2
3 Modified: zproduct.eclass
4 Log:
5 Fix unquoted variable. Bug #258234
6
7 Revision Changes Path
8 1.27 eclass/zproduct.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/zproduct.eclass?rev=1.27&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/zproduct.eclass?rev=1.27&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/zproduct.eclass?r1=1.26&r2=1.27
13
14 Index: zproduct.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/zproduct.eclass,v
17 retrieving revision 1.26
18 retrieving revision 1.27
19 diff -u -r1.26 -r1.27
20 --- zproduct.eclass 1 Jan 2007 22:27:01 -0000 1.26
21 +++ zproduct.eclass 26 Feb 2009 14:25:44 -0000 1.27
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2006 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/zproduct.eclass,v 1.26 2007/01/01 22:27:01 swegener Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/zproduct.eclass,v 1.27 2009/02/26 14:25:44 tupone Exp $
27 # Author: Jason Shoemaker <kutsuya@g.o>
28
29 # This eclass is designed to streamline the construction of
30 @@ -40,7 +40,7 @@
31 ## Create .zfolders.lst from $ZPROD_LIST.
32 debug-print-section do_zpfolders
33 for N in ${ZPROD_LIST} ; do
34 - echo ${N} >> ${D}/${DOT_ZFOLDER_FPATH}
35 + echo ${N} >> "${D}"/${DOT_ZFOLDER_FPATH}
36 done
37 ;;
38 do_docs)
39 @@ -55,7 +55,7 @@
40 debug-print-section do_install
41 # Copy everything that's left to ${D}${ZP_DIR}
42 # modified to not copy ownership (QA)
43 - cp --recursive --no-dereference --preserve=timestamps,mode,links ${S}/* ${D}/${ZP_DIR}/${PF}
44 + cp --recursive --no-dereference --preserve=timestamps,mode,links "${S}"/* "${D}"/${ZP_DIR}/${PF}
45 ;;
46 all)
47 debug-print-section all