From ec1db89c1edfd925fc480814c92f57eac56227e3 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 13 Dec 2023 17:37:26 +0000 Subject: [PATCH] blast: fix MacOS references. Needed after https://github.com/Homebrew/brew/pull/16306. --- Formula/b/blast.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/b/blast.rb b/Formula/b/blast.rb index a6285fda6f1f..40f483b26934 100644 --- a/Formula/b/blast.rb +++ b/Formula/b/blast.rb @@ -51,7 +51,7 @@ def install if OS.mac? # Allow SSE4.2 on some platforms. The --with-bin-release sets --without-sse42 - args << "--with-sse42" if Hardware::CPU.intel? && MacOS.version.requires_sse42? + args << "--with-sse42" if Hardware::CPU.intel? && OS.mac? && MacOS.version.requires_sse42? args += ["OPENMP_FLAGS=-Xpreprocessor -fopenmp", "LDFLAGS=-lomp"] end