summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-05-29 05:17:16 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-05-29 05:17:16 +0000
commitec069c32f306c03eabab0cddc2f3270ffa5d6b80 (patch)
treedb7b180af98fac3b36116d1fdaaba65a18b4d5d0 /eclass
parentMarking stable for use for 2008.0's release. (diff)
downloadhistorical-ec069c32f306c03eabab0cddc2f3270ffa5d6b80.tar.gz
historical-ec069c32f306c03eabab0cddc2f3270ffa5d6b80.tar.bz2
historical-ec069c32f306c03eabab0cddc2f3270ffa5d6b80.zip
Ensure correct install of docs and config examples for bug #212910.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/mysql.eclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass
index 7665cc05ca47..92cbeb0be434 100644
--- a/eclass/mysql.eclass
+++ b/eclass/mysql.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.91 2008/05/29 03:15:12 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.92 2008/05/29 05:17:16 robbat2 Exp $
# Author: Francesco Riosa (Retired) <vivo@gentoo.org>
# Maintainer: MySQL Team <mysql-bugs@gentoo.org>
@@ -713,21 +713,21 @@ mysql_src_install() {
# Docs
dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE
- doinfo ${S}/Docs/mysql.info
+ doinfo "${S}"/Docs/mysql.info
# Minimal builds don't have the MySQL server
if ! use minimal ; then
docinto "support-files"
for script in \
- support-files/my-*.cnf \
- support-files/magic \
- support-files/ndb-config-2-node.ini
+ "${S}"/support-files/my-*.cnf \
+ "${S}"/support-files/magic \
+ "${S}"/support-files/ndb-config-2-node.ini
do
dodoc "${script}"
done
docinto "scripts"
- for script in scripts/mysql* ; do
+ for script in "${S}"/scripts/mysql* ; do
[[ "${script%.sh}" == "${script}" ]] && dodoc "${script}"
done