diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-05-07 19:16:48 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-05-07 19:16:48 +0000 |
commit | ce9fe19bbbb3981ef80dd216bbf2943f17e399a7 (patch) | |
tree | 455c4f00a678e0ef959fea4dbab914bbed06b9ce /eclass/mysql.eclass | |
parent | Revbump for backport of fix for CVE-2011-1764, bug #366369 (diff) | |
download | gentoo-2-ce9fe19bbbb3981ef80dd216bbf2943f17e399a7.tar.gz gentoo-2-ce9fe19bbbb3981ef80dd216bbf2943f17e399a7.tar.bz2 gentoo-2-ce9fe19bbbb3981ef80dd216bbf2943f17e399a7.zip |
Bug #366289: some of the docs are removed in newer versions, update dodoc line.
Diffstat (limited to 'eclass/mysql.eclass')
-rw-r--r-- | eclass/mysql.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index e38f0327358c..1c712fe78eb8 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.159 2011/04/21 12:15:19 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.160 2011/05/07 19:16:48 robbat2 Exp $ # @ECLASS: mysql.eclass # @MAINTAINER: @@ -1171,7 +1171,9 @@ mysql_src_install() { # Docs einfo "Installing docs" - dodoc README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE + for i in README ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE ; do + [[ -f "$i" ]] && dodoc "$i" + done doinfo "${S}"/Docs/mysql.info # Minimal builds don't have the MySQL server |