diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-01-22 15:00:56 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-01-22 15:00:56 +0000 |
commit | 489087fb190a54c02fe41824e0ea617464cd2214 (patch) | |
tree | 1c768ebcba386a8f13e5646200357838e3290522 /app-admin/eselect-boost | |
parent | stable sparc, bug 288685 (diff) | |
download | gentoo-2-489087fb190a54c02fe41824e0ea617464cd2214.tar.gz gentoo-2-489087fb190a54c02fe41824e0ea617464cd2214.tar.bz2 gentoo-2-489087fb190a54c02fe41824e0ea617464cd2214.zip |
Fix quoting thanks to Tobias Nielsen.
(Portage version: 2.2_rc61/cvs/Linux i686)
Diffstat (limited to 'app-admin/eselect-boost')
-rw-r--r-- | app-admin/eselect-boost/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/eselect-boost/files/boost.eselect-0.2 | 4 | ||||
-rw-r--r-- | app-admin/eselect-boost/files/boost.eselect-0.3 | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/app-admin/eselect-boost/ChangeLog b/app-admin/eselect-boost/ChangeLog index 27be3d0302ff..264c9acea16e 100644 --- a/app-admin/eselect-boost/ChangeLog +++ b/app-admin/eselect-boost/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/eselect-boost -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-boost/ChangeLog,v 1.13 2009/12/27 12:46:44 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-boost/ChangeLog,v 1.14 2010/01/22 15:00:56 jer Exp $ + + 22 Jan 2010; Jeroen Roovers <jer@gentoo.org> files/boost.eselect-0.2, + files/boost.eselect-0.3: + Fix quoting thanks to Tobias Nielsen. 27 Dec 2009; Raúl Porcel <armin76@gentoo.org> eselect-boost-0.3.ebuild: alpha/arm/ia64/s390/sh/sparc stable diff --git a/app-admin/eselect-boost/files/boost.eselect-0.2 b/app-admin/eselect-boost/files/boost.eselect-0.2 index 594ea91555fc..7449dca1bb64 100644 --- a/app-admin/eselect-boost/files/boost.eselect-0.2 +++ b/app-admin/eselect-boost/files/boost.eselect-0.2 @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id: boost.eselect-0.2,v 1.1 2009/01/06 12:04:16 dev-zero Exp $ +# $Id: boost.eselect-0.2,v 1.2 2010/01/22 15:00:56 jer Exp $ # This eclass-module has been initially written by Łukasz Michalik <lmi@ift.uni.wroc.pl> # Corrections and extensions by Tiziano Müller <dev-zero@gentoo.org> @@ -22,7 +22,7 @@ remove_installation() { if [[ -L "${link}" ]] ; then rm "${link}" || die -q "Couldn't remove \"${link}\" symlink" else - [[ -e "${link}" ]] && die -q "\${link}\" exists and isn't a symlink" + [[ -e "${link}" ]] && die -q "\"${link}\" exists and isn't a symlink" fi done diff --git a/app-admin/eselect-boost/files/boost.eselect-0.3 b/app-admin/eselect-boost/files/boost.eselect-0.3 index b074062f7f51..72b1be18ec1c 100644 --- a/app-admin/eselect-boost/files/boost.eselect-0.3 +++ b/app-admin/eselect-boost/files/boost.eselect-0.3 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id: boost.eselect-0.3,v 1.1 2009/04/07 09:39:39 dev-zero Exp $ +# $Id: boost.eselect-0.3,v 1.2 2010/01/22 15:00:56 jer Exp $ # This eclass-module has been initially written by Łukasz Michalik <lmi@ift.uni.wroc.pl> # Corrections and extensions by Tiziano Müller <dev-zero@gentoo.org> @@ -32,7 +32,7 @@ remove_installation() { if [[ -L "${link}" ]] ; then rm "${link}" || die -q "Couldn't remove \"${link}\" symlink" else - [[ -e "${link}" ]] && die -q "\${link}\" exists and isn't a symlink" + [[ -e "${link}" ]] && die -q "\"${link}\" exists and isn't a symlink" fi done |