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 3DFB3158087 for ; Thu, 3 Feb 2022 06:21:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4F1B2BC054; Thu, 3 Feb 2022 06:21:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8BE4D2BC054 for ; Thu, 3 Feb 2022 06:21:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A48A23432CE for ; Thu, 3 Feb 2022 06:20:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A660E2C8 for ; Thu, 3 Feb 2022 06:20:55 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1643869242.1710140853f78cd3d359e5b919bcf239e161f279.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gssdp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gssdp/gssdp-1.4.0.1.ebuild X-VCS-Directories: net-libs/gssdp/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 1710140853f78cd3d359e5b919bcf239e161f279 X-VCS-Branch: master Date: Thu, 3 Feb 2022 06:20:55 +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: c8f0cd00-a39d-4b8b-9da2-0d3b8685c613 X-Archives-Hash: 1ff7a54fc561ecfb18874d35a8059f75 commit: 1710140853f78cd3d359e5b919bcf239e161f279 Author: Matt Turner gentoo org> AuthorDate: Thu Feb 3 06:04:46 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Feb 3 06:20:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17101408 net-libs/gssdp: Fix gtk-doc installation Closes: https://bugs.gentoo.org/832004 Signed-off-by: Matt Turner gentoo.org> net-libs/gssdp/gssdp-1.4.0.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-libs/gssdp/gssdp-1.4.0.1.ebuild b/net-libs/gssdp/gssdp-1.4.0.1.ebuild index 2f05db4fdfba..e3a621c091c8 100644 --- a/net-libs/gssdp/gssdp-1.4.0.1.ebuild +++ b/net-libs/gssdp/gssdp-1.4.0.1.ebuild @@ -55,7 +55,8 @@ multilib_src_configure() { multilib_src_install_all() { if use gtk-doc ; then - mv "${ED}"/usr/share/doc/{gssdp-1.2/reference,${PF}/html} || die + mv "${ED}"/usr/share/doc/{gssdp-1.2,${PF}} || die + mv "${ED}"/usr/share/doc/${PF}/{reference,html} || die rmdir "${ED}"/usr/share/doc/gssdp-1.2 fi }