Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: mysql.eclass
Date: Thu, 29 May 2008 05:17:23
Message-Id: E1K1aVo-0001e5-VO@stork.gentoo.org
1 robbat2 08/05/29 05:17:16
2
3 Modified: mysql.eclass
4 Log:
5 Ensure correct install of docs and config examples for bug #212910.
6
7 Revision Changes Path
8 1.92 eclass/mysql.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclass?rev=1.92&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclass?rev=1.92&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mysql.eclass?r1=1.91&r2=1.92
13
14 Index: mysql.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v
17 retrieving revision 1.91
18 retrieving revision 1.92
19 diff -p -w -b -B -u -u -r1.91 -r1.92
20 --- mysql.eclass 29 May 2008 03:15:12 -0000 1.91
21 +++ mysql.eclass 29 May 2008 05:17:16 -0000 1.92
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.91 2008/05/29 03:15:12 robbat2 Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.92 2008/05/29 05:17:16 robbat2 Exp $
27
28 # Author: Francesco Riosa (Retired) <vivo@g.o>
29 # Maintainer: MySQL Team <mysql-bugs@g.o>
30 @@ -713,21 +713,21 @@ mysql_src_install() {
31
32 # Docs
33 dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE
34 - doinfo ${S}/Docs/mysql.info
35 + doinfo "${S}"/Docs/mysql.info
36
37 # Minimal builds don't have the MySQL server
38 if ! use minimal ; then
39 docinto "support-files"
40 for script in \
41 - support-files/my-*.cnf \
42 - support-files/magic \
43 - support-files/ndb-config-2-node.ini
44 + "${S}"/support-files/my-*.cnf \
45 + "${S}"/support-files/magic \
46 + "${S}"/support-files/ndb-config-2-node.ini
47 do
48 dodoc "${script}"
49 done
50
51 docinto "scripts"
52 - for script in scripts/mysql* ; do
53 + for script in "${S}"/scripts/mysql* ; do
54 [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}"
55 done
56
57
58
59
60 --
61 gentoo-commits@l.g.o mailing list