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 AB9FD138350 for ; Fri, 1 May 2020 06:17:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAB1EE0AF4; Fri, 1 May 2020 06:16:59 +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 9FCB5E0AF4 for ; Fri, 1 May 2020 06:16:59 +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 BC4FF34EFB8 for ; Fri, 1 May 2020 06:16:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35DDB2B for ; Fri, 1 May 2020 06:16:55 +0000 (UTC) From: "Denis Reva" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Reva" Message-ID: <1588313803.ad88e09f6628c6884f0d4ff1b57b97991370b5f0.RarogCmex@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/amdvlk/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/amdvlk/amdvlk-2020.1.4.ebuild media-libs/amdvlk/amdvlk-2020.2.1.ebuild media-libs/amdvlk/amdvlk-2020.2.2.ebuild X-VCS-Directories: media-libs/amdvlk/ X-VCS-Committer: RarogCmex X-VCS-Committer-Name: Denis Reva X-VCS-Revision: ad88e09f6628c6884f0d4ff1b57b97991370b5f0 X-VCS-Branch: dev Date: Fri, 1 May 2020 06:16: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: 07e27fd4-4fc3-44af-9b58-1ce1ec0aa18e X-Archives-Hash: daffdddcc80dc899c8b3d7dc9296db06 commit: ad88e09f6628c6884f0d4ff1b57b97991370b5f0 Author: Denis Reva gmail com> AuthorDate: Fri May 1 06:16:43 2020 +0000 Commit: Denis Reva gmail com> CommitDate: Fri May 1 06:16:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad88e09f media-libs/amdvlk: fixed missprints in bash array removed missprints like local mycmakeargs=( \ ^ Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Denis Reva gmail.com> media-libs/amdvlk/amdvlk-2020.1.4.ebuild | 8 ++++---- media-libs/amdvlk/amdvlk-2020.2.1.ebuild | 8 ++++---- media-libs/amdvlk/amdvlk-2020.2.2.ebuild | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/media-libs/amdvlk/amdvlk-2020.1.4.ebuild b/media-libs/amdvlk/amdvlk-2020.1.4.ebuild index e249ecf..01a3e4a 100644 --- a/media-libs/amdvlk/amdvlk-2020.1.4.ebuild +++ b/media-libs/amdvlk/amdvlk-2020.1.4.ebuild @@ -83,10 +83,10 @@ EOF } multilib_src_configure() { - local mycmakeargs=( \ - -DBUILD_WAYLAND_SUPPORT=$(usex wayland ) \ - -DCMAKE_BUILD_TYPE="$(usex debug "Debug" "Release")" \ - -B${BUILD_DIR} ) + local mycmakeargs=( + -DBUILD_WAYLAND_SUPPORT=$(usex wayland ) + -DCMAKE_BUILD_TYPE="$(usex debug "Debug" "Release")" + -B"${BUILD_DIR}" ) cd "${S}"/xgl cmake -H. "${mycmakeargs[@]}" } diff --git a/media-libs/amdvlk/amdvlk-2020.2.1.ebuild b/media-libs/amdvlk/amdvlk-2020.2.1.ebuild index 3b33518..2e32603 100644 --- a/media-libs/amdvlk/amdvlk-2020.2.1.ebuild +++ b/media-libs/amdvlk/amdvlk-2020.2.1.ebuild @@ -83,10 +83,10 @@ EOF } multilib_src_configure() { - local mycmakeargs=( \ - -DBUILD_WAYLAND_SUPPORT=$(usex wayland ) \ - -DCMAKE_BUILD_TYPE="$(usex debug "Debug" "Release")" \ - -B${BUILD_DIR} ) + local mycmakeargs=( + -DBUILD_WAYLAND_SUPPORT=$(usex wayland ) + -DCMAKE_BUILD_TYPE="$(usex debug "Debug" "Release")" + -B"${BUILD_DIR}" ) cd "${S}"/xgl cmake -H. "${mycmakeargs[@]}" } diff --git a/media-libs/amdvlk/amdvlk-2020.2.2.ebuild b/media-libs/amdvlk/amdvlk-2020.2.2.ebuild index 93465d2..1859bf3 100644 --- a/media-libs/amdvlk/amdvlk-2020.2.2.ebuild +++ b/media-libs/amdvlk/amdvlk-2020.2.2.ebuild @@ -83,10 +83,10 @@ EOF } multilib_src_configure() { - local mycmakeargs=( \ - -DBUILD_WAYLAND_SUPPORT=$(usex wayland ) \ - -DCMAKE_BUILD_TYPE="$(usex debug "Debug" "Release")" \ - -B${BUILD_DIR} ) + local mycmakeargs=( + -DBUILD_WAYLAND_SUPPORT=$(usex wayland ) + -DCMAKE_BUILD_TYPE="$(usex debug "Debug" "Release")" + -B"${BUILD_DIR}" ) cd "${S}"/xgl cmake -H. "${mycmakeargs[@]}" }