diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-07-02 13:32:48 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-07-02 13:32:48 +0000 |
commit | 801cb30097e148bac9ee293237449329a69e04f1 (patch) | |
tree | 098f82dd38b6fbaa04b965c61baacf9377081827 /eclass | |
parent | Move ruby21 target to new revision. (diff) | |
download | gentoo-2-801cb30097e148bac9ee293237449329a69e04f1.tar.gz gentoo-2-801cb30097e148bac9ee293237449329a69e04f1.tar.bz2 gentoo-2-801cb30097e148bac9ee293237449329a69e04f1.zip |
Fix missing reference to ${README_GENTOO_SUFFIX}
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/readme.gentoo.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/readme.gentoo.eclass b/eclass/readme.gentoo.eclass index 27828dcc21c3..48803c677cd2 100644 --- a/eclass/readme.gentoo.eclass +++ b/eclass/readme.gentoo.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/readme.gentoo.eclass,v 1.10 2014/06/26 07:01:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/readme.gentoo.eclass,v 1.11 2014/07/02 13:32:48 jlec Exp $ # @ECLASS: readme.gentoo # @MAINTAINER: @@ -74,7 +74,7 @@ readme.gentoo_create_doc() { eshopts_pop elif [[ -f "${FILESDIR}/README.gentoo-${SLOT%/*}" ]]; then cp "${FILESDIR}/README.gentoo-${SLOT%/*}" "${T}"/README.gentoo || die - elif [[ -f "${FILESDIR}/README.gentoo" ]]; then + elif [[ -f "${FILESDIR}/README.gentoo${README_GENTOO_SUFFIX}" ]]; then cp "${FILESDIR}/README.gentoo${README_GENTOO_SUFFIX}" "${T}"/README.gentoo || die else die "You are not specifying README.gentoo contents!" |