From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Pqjo4-0005pO-3Z for garchives@archives.gentoo.org; Sat, 19 Feb 2011 10:12:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FC8AE050F; Sat, 19 Feb 2011 10:12:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E5E42E050F for ; Sat, 19 Feb 2011 10:12:44 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F24D1B4211 for ; Sat, 19 Feb 2011 10:12:44 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2178) id 26A7A20054; Sat, 19 Feb 2011 10:12:42 +0000 (UTC) From: "Ulrich Mueller (ulm)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ulm@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: elisp-common.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: elisp-common.eclass X-VCS-Directories: eclass X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller Content-Type: text/plain; charset=utf8 Message-Id: <20110219101242.26A7A20054@flycatcher.gentoo.org> Date: Sat, 19 Feb 2011 10:12:42 +0000 (UTC) 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: X-Archives-Hash: d7d771813c0ff2a0f39243f218dcd3ad ulm 11/02/19 10:12:42 Modified: elisp-common.eclass Log: Add missing pair of quotation marks. Revision Changes Path 1.71 eclass/elisp-common.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-commo= n.eclass?rev=3D1.71&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-commo= n.eclass?rev=3D1.71&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-commo= n.eclass?r1=3D1.70&r2=3D1.71 Index: elisp-common.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/elisp-common.eclass,v retrieving revision 1.70 retrieving revision 1.71 diff -u -r1.70 -r1.71 --- elisp-common.eclass 29 Nov 2010 17:07:22 -0000 1.70 +++ elisp-common.eclass 19 Feb 2011 10:12:42 -0000 1.71 @@ -1,12 +1,12 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.70 201= 0/11/29 17:07:22 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.71 201= 1/02/19 10:12:42 ulm Exp $ # # Copyright 2002-2004 Matthew Kennedy # Copyright 2003 Jeremy Maitin-Shepard # Copyright 2004-2005 Mamoru Komachi # Copyright 2007-2008 Christian Faulhammer -# Copyright 2007-2010 Ulrich M=C3=BCller +# Copyright 2007-2011 Ulrich M=C3=BCller # # @ECLASS: elisp-common.eclass # @MAINTAINER: @@ -284,7 +284,7 @@ || ewarn "elisp-site-file-install: bad name of site-init file" sf=3D"${T}/${sf/%-gentoo*.el/-gentoo.el}" ebegin "Installing site initialisation file for GNU Emacs" - [[ $1 =3D ${sf} ]] || cp "$1" "${sf}" + [[ $1 =3D "${sf}" ]] || cp "$1" "${sf}" sed -i -e "1{:x;/^\$/{n;bx;};/^;.*${PN}/I!s:^:${header}\n\n:;1s:^:\n:;}= " \ -e "s:@SITELISP@:${EPREFIX}${SITELISP}/${my_pn}:g" \ -e "s:@SITEETC@:${EPREFIX}${SITEETC}/${my_pn}:g;\$q" "${sf}"