From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CAF8B158094 for ; Fri, 5 Aug 2022 05:57:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B647E0AEA; Fri, 5 Aug 2022 05:57:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC266E0AEA for ; Fri, 5 Aug 2022 05:57:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE6C7340B10 for ; Fri, 5 Aug 2022 05:57:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BC111E for ; Fri, 5 Aug 2022 05:57:01 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1659679008.a78599b4065281da97a1cf9177280b7d7d292211.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libunwind/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libunwind/libunwind-1.6.2-r1.ebuild X-VCS-Directories: sys-libs/libunwind/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a78599b4065281da97a1cf9177280b7d7d292211 X-VCS-Branch: master Date: Fri, 5 Aug 2022 05:57:01 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 57f0325d-f19b-4d89-8f6a-29d0a54487d8 X-Archives-Hash: 1531ce57f93028ef80ef5167e469b3ec commit: a78599b4065281da97a1cf9177280b7d7d292211 Author: Sam James gentoo org> AuthorDate: Fri Aug 5 05:56:20 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Aug 5 05:56:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a78599b4 sys-libs/libunwind: fix man path Closes: https://bugs.gentoo.org/863698 Signed-off-by: Sam James gentoo.org> sys-libs/libunwind/libunwind-1.6.2-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-libs/libunwind/libunwind-1.6.2-r1.ebuild b/sys-libs/libunwind/libunwind-1.6.2-r1.ebuild index 9526faf6e04f..144c3e79cac5 100644 --- a/sys-libs/libunwind/libunwind-1.6.2-r1.ebuild +++ b/sys-libs/libunwind/libunwind-1.6.2-r1.ebuild @@ -12,6 +12,8 @@ LIBUNWIND_DOCS_VERSION=$(ver_cut 1-3) # Default to generating docs (inc. man pages) if no prebuilt; overridden later LIBUNWIND_DOCS_USEFLAG="+doc" +[[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] && LIBUNWIND_DOCS_USEFLAG="doc" + MY_PV=${PV/_/-} MY_P=${PN}-${MY_PV} inherit multilib-minimal @@ -110,6 +112,6 @@ multilib_src_install_all() { # If USE=doc, there'll be newly generated docs which we install instead. if ! use doc && [[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] ; then - doman "${WORKDIR}"/${PN}-${LIBUNWIND_DOCS_VERSION}-docs/docs/*.[0-8] + doman "${WORKDIR}"/${PN}-${LIBUNWIND_DOCS_VERSION}-docs/man*/*.[0-8] fi }