From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0D1271381FB for ; Wed, 26 Dec 2012 15:07:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9540BE06D9; Wed, 26 Dec 2012 15:06:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C4E1E06D9 for ; Wed, 26 Dec 2012 15:06:54 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1EA4F33D95C for ; Wed, 26 Dec 2012 15:06:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B76B2E543D for ; Wed, 26 Dec 2012 15:06:51 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1356534336.b60228c469479ec8c8d9f0de33395de68d33a46a.grobian@gentoo> Subject: [gentoo-commits] proj/portage:prefix commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: b60228c469479ec8c8d9f0de33395de68d33a46a X-VCS-Branch: prefix Date: Wed, 26 Dec 2012 15:06:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0675805a-dcf1-4dcb-b43f-085465ad2625 X-Archives-Hash: 6f9d26d2a7818f28a65a24962ed63373 commit: b60228c469479ec8c8d9f0de33395de68d33a46a Author: Fabian Groffen gentoo org> AuthorDate: Wed Dec 26 15:05:36 2012 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Dec 26 15:05:36 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b60228c4 install_symlink_html_docs: remove superfluous EPREFIX dosym already handles EPREFIX for us transparently, so don't add another one. Thanks Cyprien Nicolas in bug #442348. --- bin/misc-functions.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 3684d7c..c997635 100644 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -30,7 +30,7 @@ install_symlink_html_docs() { local mydocdir docdir for docdir in "${HTMLDOC_DIR:-does/not/exist}" "${PF}/html" "${PF}/HTML" "${P}/html" "${P}/HTML" ; do if [ -d "usr/share/doc/${docdir}" ] ; then - mydocdir="${EPREFIX}/usr/share/doc/${docdir}" + mydocdir="/usr/share/doc/${docdir}" fi done if [ -n "${mydocdir}" ] ; then