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 8F2D9138359 for ; Wed, 29 Jul 2020 16:53:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB147E0C94; Wed, 29 Jul 2020 16:53:01 +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 9046FE0C5F for ; Wed, 29 Jul 2020 16:53:01 +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 4A89A34EF73 for ; Wed, 29 Jul 2020 16:53:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B8272F5 for ; Wed, 29 Jul 2020 16:52:57 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1596041561.3017ae7da37129bb873ad5b952c46f178acb65ad.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ispc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/ispc/ispc-1.13.0.ebuild dev-lang/ispc/ispc-9999.ebuild X-VCS-Directories: dev-lang/ispc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3017ae7da37129bb873ad5b952c46f178acb65ad X-VCS-Branch: master Date: Wed, 29 Jul 2020 16:52:57 +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: 948d9d34-c4c5-4f32-ba62-29ca1a0530b1 X-Archives-Hash: 0870bae6f0d8b32ebeb79560fa980440 commit: 3017ae7da37129bb873ad5b952c46f178acb65ad Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jul 29 16:51:43 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jul 29 16:52:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3017ae7d dev-lang/ispc: [QA] Fix unquoted variable Bug: https://bugs.gentoo.org/670628 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-lang/ispc/ispc-1.13.0.ebuild | 4 ++-- dev-lang/ispc/ispc-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-lang/ispc/ispc-1.13.0.ebuild b/dev-lang/ispc/ispc-1.13.0.ebuild index 244bb728565..33144034d36 100644 --- a/dev-lang/ispc/ispc-1.13.0.ebuild +++ b/dev-lang/ispc/ispc-1.13.0.ebuild @@ -48,12 +48,12 @@ src_configure() { } src_install() { - dobin ${BUILD_DIR}/bin/ispc + dobin "${BUILD_DIR}"/bin/ispc dodoc README.md if use examples; then insinto "/usr/share/doc/${PF}/examples" docompress -x "/usr/share/doc/${PF}/examples" - doins -r ${BUILD_DIR}/examples/* + doins -r "${BUILD_DIR}"/examples/* fi } diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild index d2a75a6652a..c8398b962c6 100644 --- a/dev-lang/ispc/ispc-9999.ebuild +++ b/dev-lang/ispc/ispc-9999.ebuild @@ -48,12 +48,12 @@ src_configure() { } src_install() { - dobin ${BUILD_DIR}/bin/ispc + dobin "${BUILD_DIR}"/bin/ispc dodoc README.md if use examples; then insinto "/usr/share/doc/${PF}/examples" docompress -x "/usr/share/doc/${PF}/examples" - doins -r ${BUILD_DIR}/examples/* + doins -r "${BUILD_DIR}"/examples/* fi }