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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F9D2158094 for ; Sun, 25 Sep 2022 01:27:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE79BE0BAB; Sun, 25 Sep 2022 01:27:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A49FCE0BAB for ; Sun, 25 Sep 2022 01:27:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB5C1340E9A for ; Sun, 25 Sep 2022 01:27:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 638A35F6 for ; Sun, 25 Sep 2022 01:27:53 +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: <1664069240.86e675d722e7de6a3875f29bf8a68c2ae71a6692.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/neovim/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/neovim/files/neovim-9999-cmake-darwin.patch X-VCS-Directories: app-editors/neovim/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 86e675d722e7de6a3875f29bf8a68c2ae71a6692 X-VCS-Branch: master Date: Sun, 25 Sep 2022 01:27:53 +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: 4c3f10d8-d892-4323-b7d3-c1b304251b53 X-Archives-Hash: eda5c2508674fbd16049857928394a24 commit: 86e675d722e7de6a3875f29bf8a68c2ae71a6692 Author: Bharath Saiguhan protonmail com> AuthorDate: Mon Sep 12 07:03:53 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 25 01:27:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e675d7 app-editors/neovim: remove unnecessary underscore This fixes an extra underscore introduced by mistake in the previous commit. Fixes: 545106ff82c8c0795c08656235b0e1c235848d09 Signed-off-by: Bharath Saiguhan protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/27218 Signed-off-by: Sam James gentoo.org> app-editors/neovim/files/neovim-9999-cmake-darwin.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-editors/neovim/files/neovim-9999-cmake-darwin.patch b/app-editors/neovim/files/neovim-9999-cmake-darwin.patch index 571de0813ca6..ad47a46e1a7a 100644 --- a/app-editors/neovim/files/neovim-9999-cmake-darwin.patch +++ b/app-editors/neovim/files/neovim-9999-cmake-darwin.patch @@ -26,7 +26,7 @@ - # Work around some old, broken detection by CMake for knowing when to use the - # isystem flag. Apple's compilers have supported this for quite some time - # now. -- if(CMAKE_C_COMPILER_ID_MATCHES "GNU") +- if(CMAKE_C_COMPILER_ID MATCHES "GNU") - set(CMAKE_INCLUDE_SYSTEM_FLAG_C "-isystem ") - endif() -endif()