summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-02-19 10:12:42 +0000
committerUlrich Müller <ulm@gentoo.org>2011-02-19 10:12:42 +0000
commitfca117158824917a9a02723b83e3b23412fa9828 (patch)
tree3c5b13a147ca73d02aa34c633d7a8738dfef514f /eclass
parentppc/ppc64 stable wrt #352335 (diff)
downloadgentoo-2-fca117158824917a9a02723b83e3b23412fa9828.tar.gz
gentoo-2-fca117158824917a9a02723b83e3b23412fa9828.tar.bz2
gentoo-2-fca117158824917a9a02723b83e3b23412fa9828.zip
Add missing pair of quotation marks.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/elisp-common.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass
index ad32cbe00451..b7b8a181ef1f 100644
--- a/eclass/elisp-common.eclass
+++ b/eclass/elisp-common.eclass
@@ -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 2010/11/29 17:07:22 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.71 2011/02/19 10:12:42 ulm Exp $
#
# Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
# Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org>
# Copyright 2007-2008 Christian Faulhammer <fauli@gentoo.org>
-# Copyright 2007-2010 Ulrich Müller <ulm@gentoo.org>
+# Copyright 2007-2011 Ulrich Müller <ulm@gentoo.org>
#
# @ECLASS: elisp-common.eclass
# @MAINTAINER:
@@ -284,7 +284,7 @@ elisp-site-file-install() {
|| ewarn "elisp-site-file-install: bad name of site-init file"
sf="${T}/${sf/%-gentoo*.el/-gentoo.el}"
ebegin "Installing site initialisation file for GNU Emacs"
- [[ $1 = ${sf} ]] || cp "$1" "${sf}"
+ [[ $1 = "${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}"