We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2568e5 + 69fd797 commit 944210bCopy full SHA for 944210b
Formula/t/t1lib.rb
@@ -34,7 +34,11 @@ def install
34
# Workaround for newer Clang
35
ENV.append_to_cflags "-Wno-implicit-int" if DevelopmentTools.clang_build_version >= 1403
36
37
- system "./configure", "--prefix=#{prefix}"
+ args = []
38
+ # Help old config scripts identify arm64 linux
39
+ args << "--build=aarch64-unknown-linux-gnu" if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
40
+
41
+ system "./configure", *args, *std_configure_args
42
system "make", "without_doc"
43
system "make", "install"
44
share.install "Fonts" => "fonts"
0 commit comments