Gentoo Archives: gentoo-commits

From: Ulrich Mueller <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms:master commit in: /
Date: Wed, 02 Jan 2013 18:40:07
Message-Id: 1354094672.6cc58a14e8f8d9d7b98bc58c115cd58c2d898544.ulm@gentoo
1 commit: 6cc58a14e8f8d9d7b98bc58c115cd58c2d898544
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 28 09:18:00 2012 +0000
4 Commit: Ulrich Mueller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 28 09:24:32 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms.git;a=commit;h=6cc58a14
7
8 src-install-4: Replace single quotes by double quotes
9
10 This improves readability. It doesn't make any difference for bash.
11
12 ---
13 ebuild-functions.tex | 2 +-
14 1 files changed, 1 insertions(+), 1 deletions(-)
15
16 diff --git a/ebuild-functions.tex b/ebuild-functions.tex
17 index 1f2ab68..84847e9 100644
18 --- a/ebuild-functions.tex
19 +++ b/ebuild-functions.tex
20 @@ -317,7 +317,7 @@ src_install() {
21 THANKS BUGS FAQ CREDITS CHANGELOG ; do
22 [[ -s "${d}" ]] && dodoc "${d}"
23 done
24 - elif declare -p DOCS | grep -q '^declare -a ' ; then
25 + elif declare -p DOCS | grep -q "^declare -a " ; then
26 dodoc "${DOCS[@]}"
27 else
28 dodoc ${DOCS}