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 DFB2D138363 for ; Tue, 11 May 2021 20:01:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36DF5E0875; Tue, 11 May 2021 20:01:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1CF27E0872 for ; Tue, 11 May 2021 20:01:45 +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 C684E34112E for ; Tue, 11 May 2021 20:01:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7CCB9E7 for ; Tue, 11 May 2021 19:24:38 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1620761041.2088ffbbe9005690faa7de02d4a939fd3a46fe7a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/shaderc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/shaderc/shaderc-2020.5_pre20201216.ebuild media-libs/shaderc/shaderc-2020.6_pre20210327.ebuild X-VCS-Directories: media-libs/shaderc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2088ffbbe9005690faa7de02d4a939fd3a46fe7a X-VCS-Branch: master Date: Tue, 11 May 2021 19:24:38 +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: 5f3c8736-6602-40ba-9827-dcd0303c1716 X-Archives-Hash: a79cfdb3dbb0beeb8fc70d46b59e65f0 commit: 2088ffbbe9005690faa7de02d4a939fd3a46fe7a Author: Sam James gentoo org> AuthorDate: Tue May 11 18:42:37 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 11 19:24:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2088ffbb media-libs/shaderc: fix build with USE=doc (fix cmake_src_compile typo) Closes: https://bugs.gentoo.org/752996 Signed-off-by: Sam James gentoo.org> media-libs/shaderc/shaderc-2020.5_pre20201216.ebuild | 2 +- media-libs/shaderc/shaderc-2020.6_pre20210327.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/shaderc/shaderc-2020.5_pre20201216.ebuild b/media-libs/shaderc/shaderc-2020.5_pre20201216.ebuild index aea9fc518e2..f5b20c3034d 100644 --- a/media-libs/shaderc/shaderc-2020.5_pre20201216.ebuild +++ b/media-libs/shaderc/shaderc-2020.5_pre20201216.ebuild @@ -79,7 +79,7 @@ multilib_src_configure() { multilib_src_compile() { if multilib_is_native_abi && use doc; then - cmake_src_make glslc_doc_README + cmake_src_compile glslc_doc_README fi cmake_src_compile } diff --git a/media-libs/shaderc/shaderc-2020.6_pre20210327.ebuild b/media-libs/shaderc/shaderc-2020.6_pre20210327.ebuild index 871135cebb0..cdce13da42b 100644 --- a/media-libs/shaderc/shaderc-2020.6_pre20210327.ebuild +++ b/media-libs/shaderc/shaderc-2020.6_pre20210327.ebuild @@ -79,7 +79,7 @@ multilib_src_configure() { multilib_src_compile() { if multilib_is_native_abi && use doc; then - cmake_src_make glslc_doc_README + cmake_src_compile glslc_doc_README fi cmake_src_compile }