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 BD7DA138334 for ; Sun, 23 Sep 2018 07:14:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78B63E0824; Sun, 23 Sep 2018 07:14:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 524CFE0824 for ; Sun, 23 Sep 2018 07:14:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9CDF4335CEA for ; Sun, 23 Sep 2018 07:14:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 859ED3AB for ; Sun, 23 Sep 2018 07:14:54 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1537686883.ac93f5d4b432cf5ec40270b6d79a655112e75f43.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/neofetch/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/neofetch/neofetch-5.0.0.ebuild X-VCS-Directories: app-misc/neofetch/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: ac93f5d4b432cf5ec40270b6d79a655112e75f43 X-VCS-Branch: master Date: Sun, 23 Sep 2018 07:14:54 +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: 0b89630a-7f6d-4d23-a143-e5a5fa400951 X-Archives-Hash: f43904846788a8d0f156c80588f05661 commit: ac93f5d4b432cf5ec40270b6d79a655112e75f43 Author: Benda Xu gentoo org> AuthorDate: Sun Sep 23 07:10:25 2018 +0000 Commit: Benda XU gentoo org> CommitDate: Sun Sep 23 07:14:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac93f5d4 app-misc/neofetch: fix double "/usr". Bug: https://bugs.gentoo.org/665476 Package-Manager: Portage-2.3.49, Repoman-2.3.10 app-misc/neofetch/neofetch-5.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-misc/neofetch/neofetch-5.0.0.ebuild b/app-misc/neofetch/neofetch-5.0.0.ebuild index de03e24b9c5..83f1ec36f8d 100644 --- a/app-misc/neofetch/neofetch-5.0.0.ebuild +++ b/app-misc/neofetch/neofetch-5.0.0.ebuild @@ -28,5 +28,5 @@ RDEPEND="sys-apps/pciutils )" src_install() { - emake DESTDIR="${ED}/usr" install + emake DESTDIR="${ED}" install }