From 2bd20eaa1534603b119a0ce6ad0b9f766f9c8c80 Mon Sep 17 00:00:00 2001 From: Tokarak <63452145+Tokarak@users.noreply.github.com> Date: Tue, 13 Jun 2023 19:45:52 +0100 Subject: [PATCH] Fix --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index d2cea2d606..46a68eb38f 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1544,7 +1544,7 @@ class Formula sig { params(root: T.any(String, Pathname), path: String).returns(T::Array[T.any(String, Pathname)]) } def std_cargo_args(root: prefix, path: ".") ["--locked", "--root", root, "--path", path, "--config", - "build.rustflags=['#{Hardware::CPU.rustflags_target_cpu}']"] + "build.rustflags=['#{Hardware.rustflags_target_cpu}']"] end # Standard parameters for CMake builds.