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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6FD9F158086 for ; Sat, 16 Oct 2021 07:33:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7B6BE070D; Sat, 16 Oct 2021 07:33:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1F7EE070D for ; Sat, 16 Oct 2021 07:33:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0250342FA0 for ; Sat, 16 Oct 2021 07:33:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDEA1156 for ; Sat, 16 Oct 2021 07:33:33 +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: <1634369598.59768db2f96d3615d4a23295a52d7cf59ac679f3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/rpm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/rpm/rpm-4.17.0.ebuild X-VCS-Directories: app-arch/rpm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 59768db2f96d3615d4a23295a52d7cf59ac679f3 X-VCS-Branch: master Date: Sat, 16 Oct 2021 07:33:33 +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: 2241a37f-c714-422f-938c-c581c24cf01a X-Archives-Hash: 236a3cf016a4e8e4dfa86a941cac1f73 commit: 59768db2f96d3615d4a23295a52d7cf59ac679f3 Author: Sam James gentoo org> AuthorDate: Sat Oct 16 07:33:18 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 16 07:33:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59768db2 app-arch/rpm: fix doc installation Closes: https://bugs.gentoo.org/818427 Signed-off-by: Sam James gentoo.org> app-arch/rpm/rpm-4.17.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-arch/rpm/rpm-4.17.0.ebuild b/app-arch/rpm/rpm-4.17.0.ebuild index a403bcc2344..2bc13467118 100644 --- a/app-arch/rpm/rpm-4.17.0.ebuild +++ b/app-arch/rpm/rpm-4.17.0.ebuild @@ -121,9 +121,10 @@ src_install() { dodoc CREDITS README* if use doc; then + local docname for docname in librpm; do docinto "html/${docname}" - dodoc -r "doc/${docname}/html/." + dodoc -r "docs/${docname}/html/." done fi