Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:prefix commit in: bin/
Date: Wed, 26 Dec 2012 15:07:03
Message-Id: 1356534336.b60228c469479ec8c8d9f0de33395de68d33a46a.grobian@gentoo
1 commit: b60228c469479ec8c8d9f0de33395de68d33a46a
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 26 15:05:36 2012 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 26 15:05:36 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b60228c4
7
8 install_symlink_html_docs: remove superfluous EPREFIX
9
10 dosym already handles EPREFIX for us transparently, so don't add another
11 one. Thanks Cyprien Nicolas in bug #442348.
12
13 ---
14 bin/misc-functions.sh | 2 +-
15 1 files changed, 1 insertions(+), 1 deletions(-)
16
17 diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
18 index 3684d7c..c997635 100644
19 --- a/bin/misc-functions.sh
20 +++ b/bin/misc-functions.sh
21 @@ -30,7 +30,7 @@ install_symlink_html_docs() {
22 local mydocdir docdir
23 for docdir in "${HTMLDOC_DIR:-does/not/exist}" "${PF}/html" "${PF}/HTML" "${P}/html" "${P}/HTML" ; do
24 if [ -d "usr/share/doc/${docdir}" ] ; then
25 - mydocdir="${EPREFIX}/usr/share/doc/${docdir}"
26 + mydocdir="/usr/share/doc/${docdir}"
27 fi
28 done
29 if [ -n "${mydocdir}" ] ; then