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 85B80138010 for ; Wed, 24 Oct 2012 21:04:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 258CA21C041; Wed, 24 Oct 2012 21:04:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A4F2A21C043 for ; Wed, 24 Oct 2012 21:04:17 +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 D388533D8AD for ; Wed, 24 Oct 2012 21:04:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1B87CE5436 for ; Wed, 24 Oct 2012 21:04:14 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1351112420.5ebd980500d788ec6adfe2d004d22f954e5ab54d.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: 5ebd980500d788ec6adfe2d004d22f954e5ab54d X-VCS-Branch: master Date: Wed, 24 Oct 2012 21:04:14 +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: 0e92eb03-e7ff-472a-9ecb-8a7e7a838f9e X-Archives-Hash: 49fcbc0ad1c552f5ea5bffb46c1c8252 commit: 5ebd980500d788ec6adfe2d004d22f954e5ab54d Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Wed Oct 24 21:00:20 2012 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gmail com> CommitDate: Wed Oct 24 21:00:20 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=5ebd9805 install_symlink_html_docs(): Additional fix for compatibility with subslots. --- 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 f3b0cc0..9b28058 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -31,7 +31,7 @@ install_symlink_html_docs() { done if [ -n "${mydocdir}" ] ; then local mysympath - if [ -z "${SLOT}" -o "${SLOT}" = "0" ] ; then + if [ -z "${SLOT}" -o "${SLOT%/*}" = "0" ] ; then mysympath="${DOC_SYMLINKS_DIR}/${CATEGORY}/${PN}" else mysympath="${DOC_SYMLINKS_DIR}/${CATEGORY}/${PN}-${SLOT%/*}"