We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cebf231 + 95ad6ed commit fd54611Copy full SHA for fd54611
Formula/w/wwwoffle.rb
@@ -32,7 +32,11 @@ class Wwwoffle < Formula
32
uses_from_macos "zlib"
33
34
def install
35
- system "./configure", "--prefix=#{prefix}"
+ args = []
36
+ # Help old config scripts identify arm64 linux
37
+ args << "--build=aarch64-unknown-linux-gnu" if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
38
+
39
+ system "./configure", *args, *std_configure_args
40
system "make", "install"
41
end
42
0 commit comments