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 E5335138359 for ; Tue, 29 Sep 2020 07:29:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CBB1E0864; Tue, 29 Sep 2020 07:29:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 131E8E0864 for ; Tue, 29 Sep 2020 07:29:55 +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 26716335DEF for ; Tue, 29 Sep 2020 07:29:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FCE9332 for ; Tue, 29 Sep 2020 07:29:52 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1601364487.737e4f763b5e4b3952fdef5a93a6ed32023ff6a6.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/nvidia-cuda-toolkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-11.0.3.ebuild X-VCS-Directories: dev-util/nvidia-cuda-toolkit/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 737e4f763b5e4b3952fdef5a93a6ed32023ff6a6 X-VCS-Branch: master Date: Tue, 29 Sep 2020 07:29:52 +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: c726332e-d460-43f4-89f0-584d1cc44fb1 X-Archives-Hash: 7bcb3b18c09eccb828ce170b02ff3b08 commit: 737e4f763b5e4b3952fdef5a93a6ed32023ff6a6 Author: Guilherme Amadio gentoo org> AuthorDate: Mon Sep 28 15:09:41 2020 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Tue Sep 29 07:28:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737e4f76 dev-util/nvidia-cuda-toolkit: fix CI warning Removing trailing slash causes a CI warning, as it's not necessary. Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Guilherme Amadio gentoo.org> dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-11.0.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-11.0.3.ebuild b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-11.0.3.ebuild index 5e710f2fccd..f01bcb2da8a 100644 --- a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-11.0.3.ebuild +++ b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-11.0.3.ebuild @@ -203,7 +203,7 @@ src_install() { } pkg_postinst_check() { - local a="$(${EROOT%/}/opt/cuda/bin/cuda-config -s)" + local a="$(${EROOT}/opt/cuda/bin/cuda-config -s)" local b="0.0" local v for v in ${a}; do