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 A440D1396D1 for ; Thu, 24 Aug 2017 15:53:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9C9A1FC015; Thu, 24 Aug 2017 15:53:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B06641FC015 for ; Thu, 24 Aug 2017 15:53:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D80B341AB2 for ; Thu, 24 Aug 2017 15:53:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 153698122 for ; Thu, 24 Aug 2017 15:53:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1503589986.a0afe147434162b40039fab3006a911b018b375c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/detachtty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/detachtty/detachtty-9-r1.ebuild app-misc/detachtty/detachtty-9.ebuild X-VCS-Directories: app-misc/detachtty/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a0afe147434162b40039fab3006a911b018b375c X-VCS-Branch: master Date: Thu, 24 Aug 2017 15:53:16 +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: 2b3fa25b-0fd4-4bb9-aaf8-c3514667df14 X-Archives-Hash: 24ec84caae68489172d09c2dc5f62e65 commit: a0afe147434162b40039fab3006a911b018b375c Author: Michał Górny gentoo org> AuthorDate: Thu Aug 24 10:46:03 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 24 15:53:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0afe147 app-misc/detachtty: [QA] Use relative symlink target(s) app-misc/detachtty/detachtty-9-r1.ebuild | 2 +- app-misc/detachtty/detachtty-9.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-misc/detachtty/detachtty-9-r1.ebuild b/app-misc/detachtty/detachtty-9-r1.ebuild index 875d2185173..4872c27d12f 100644 --- a/app-misc/detachtty/detachtty-9-r1.ebuild +++ b/app-misc/detachtty/detachtty-9-r1.ebuild @@ -24,6 +24,6 @@ src_compile() { src_install() { dobin "${PN}" attachtty doman "${PN}.1" - dosym /usr/share/man/man1/detachtty.1 /usr/share/man/man1/attachtty.1 + dosym detachtty.1 /usr/share/man/man1/attachtty.1 einstalldocs } diff --git a/app-misc/detachtty/detachtty-9.ebuild b/app-misc/detachtty/detachtty-9.ebuild index a284ddd8512..b24b044ecb5 100644 --- a/app-misc/detachtty/detachtty-9.ebuild +++ b/app-misc/detachtty/detachtty-9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit toolchain-funcs @@ -21,6 +21,6 @@ src_compile() { src_install() { dobin detachtty attachtty || die doman detachtty.1 || die - dosym /usr/share/man/man1/detachtty.1 /usr/share/man/man1/attachtty.1 + dosym detachtty.1 /usr/share/man/man1/attachtty.1 dodoc INSTALL README || die }