diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-04-26 16:08:36 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-04-26 16:08:36 +0000 |
commit | e7eac151ee17f8fbead5dd397886dca7c857a215 (patch) | |
tree | fdab88677f6a5357af65e23f1d634389cd496e65 /sci-biology | |
parent | sci-biology/tree-puzzle: Move to EAPI=4 (diff) | |
download | gentoo-2-e7eac151ee17f8fbead5dd397886dca7c857a215.tar.gz gentoo-2-e7eac151ee17f8fbead5dd397886dca7c857a215.tar.bz2 gentoo-2-e7eac151ee17f8fbead5dd397886dca7c857a215.zip |
sci-biology/tree-puzzle: Add missing quotes
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/tree-puzzle/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-biology/tree-puzzle/ChangeLog b/sci-biology/tree-puzzle/ChangeLog index dec1c08c776c..a18e0d5a336c 100644 --- a/sci-biology/tree-puzzle/ChangeLog +++ b/sci-biology/tree-puzzle/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/tree-puzzle # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/tree-puzzle/ChangeLog,v 1.16 2012/04/26 16:06:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/tree-puzzle/ChangeLog,v 1.17 2012/04/26 16:08:36 jlec Exp $ + + 26 Apr 2012; Justin Lecher <jlec@gentoo.org> tree-puzzle-5.2.ebuild: + Add missing quotes 26 Apr 2012; Justin Lecher <jlec@gentoo.org> tree-puzzle-5.2.ebuild: Move to EAPI=4 diff --git a/sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild b/sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild index 1d5a2b540bb5..21af373d017a 100644 --- a/sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild +++ b/sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild,v 1.11 2012/04/26 16:06:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/tree-puzzle/tree-puzzle-5.2.ebuild,v 1.12 2012/04/26 16:08:36 jlec Exp $ EAPI=4 @@ -26,12 +26,12 @@ pkg_setup () { src_prepare() { if ! use mpi; then - cd ${S}/src + cd "${S}"/src sed \ -e 's:bin_PROGRAMS = puzzle$(EXEEXT) ppuzzle:bin_PROGRAMS = puzzle :' \ -e 's:DIST_SOURCES = $(ppuzzle_SOURCES) $(puzzle_SOURCES):DIST_SOURCES = $(puzzle_SOURCES):' \ -i Makefile || die - cd ${S} + cd "${S}" fi } |