From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JP4ut-0002qZ-M0 for garchives@archives.gentoo.org; Tue, 12 Feb 2008 23:51:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E133EE01D5; Tue, 12 Feb 2008 23:51:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B17D8E01D5 for ; Tue, 12 Feb 2008 23:51:57 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 3421D66B19 for ; Tue, 12 Feb 2008 23:51:57 +0000 (UTC) Received: from betelgeuse by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JP4um-0004Hy-DH for gentoo-commits@lists.gentoo.org; Tue, 12 Feb 2008 23:51:52 +0000 From: "Petteri Raty (betelgeuse)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, betelgeuse@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: base.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: base.eclass X-VCS-Directories: eclass X-VCS-Committer: betelgeuse X-VCS-Committer-Name: Petteri Raty Content-Type: text/plain; charset=utf8 Message-Id: Sender: Petteri Raty Date: Tue, 12 Feb 2008 23:51:52 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: b1a08b8a-bc46-41ff-a553-4e1f0a332833 X-Archives-Hash: 9c43bec4e1ff8ae68a26ff3e0752eda1 betelgeuse 08/02/12 23:51:52 Modified: base.eclass Log: Quote variables Revision Changes Path 1.32 eclass/base.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/base.eclass= ?rev=3D1.32&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/base.eclass= ?rev=3D1.32&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/base.eclass= ?r1=3D1.31&r2=3D1.32 Index: base.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/base.eclass,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- base.eclass 12 Sep 2007 20:05:33 -0000 1.31 +++ base.eclass 12 Feb 2008 23:51:51 -0000 1.32 @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.31 2007/09/12 = 20:05:33 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.32 2008/02/12 = 23:51:51 betelgeuse Exp $ # # Author Dan Armak (nowadays retired) # @@ -16,7 +16,7 @@ debug-print-function $FUNCNAME $* [ -z "$1" ] && base_src_unpack all =20 - cd ${WORKDIR} + cd "${WORKDIR}" =20 while [ "$1" ]; do =20 @@ -27,13 +27,13 @@ ;; patch) debug-print-section patch - cd ${S} - epatch ${FILESDIR}/${P}-gentoo.diff + cd "${S}" + epatch "${FILESDIR}/${P}-gentoo.diff" ;; autopatch) debug-print-section autopatch debug-print "$FUNCNAME: autopatch: PATCHES=3D$PATCHES, PATCHES1=3D$PA= TCHES1" - cd ${S} + cd "${S}" for x in $PATCHES $PATCHES1; do debug-print "$FUNCNAME: autopatch: patching from ${x}" epatch ${x} @@ -55,7 +55,7 @@ debug-print-function $FUNCNAME $* [ -z "$1" ] && base_src_compile all =20 - cd ${S} + cd "${S}" =20 while [ "$1" ]; do =20 @@ -84,14 +84,14 @@ debug-print-function $FUNCNAME $* [ -z "$1" ] && base_src_install all =20 - cd ${S} + cd "${S}" =20 while [ "$1" ]; do =20 case $1 in make) debug-print-section make - make DESTDIR=3D${D} install || die "died running make install, $FUNCN= AME:make" + make DESTDIR=3D"${D}" install || die "died running make install, $FUN= CNAME:make" ;; all) debug-print-section all --=20 gentoo-commits@lists.gentoo.org mailing list