From b3d77e5620bababc5e4ed8f855aff439498e0070 Mon Sep 17 00:00:00 2001 From: Michka Popoff Date: Tue, 30 Nov 2021 22:55:06 +0100 Subject: [PATCH] semgrep: fix linkage to gcc on Linux The current bottle ships a semgrep that links against gcc, which went unnoticed before. This change makes the linkage explicit. Closes #90199. Signed-off-by: Branch Vincent <19800529+branchvincent@users.noreply.github.com> Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> --- Formula/semgrep.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/semgrep.rb b/Formula/semgrep.rb index 8eba74e4d96..d4115e16db0 100644 --- a/Formula/semgrep.rb +++ b/Formula/semgrep.rb @@ -7,6 +7,7 @@ class Semgrep < Formula tag: "v0.75.0", revision: "d786313c7bfdaac0c53e07cffc6fcb91a1b5c0ee" license "LGPL-2.1-only" + revision 1 head "https://github.com/returntocorp/semgrep.git", branch: "develop" livecheck do @@ -36,7 +37,7 @@ class Semgrep < Formula uses_from_macos "rsync" => :build on_linux do - depends_on "gcc" => [:build, :test] + depends_on "gcc" end fails_with gcc: "5"