Specify "build" but not "host" for gmp and mpfr
The "--host" flag to configure defaults to "--build", and explicitly passing it is normally reserved for cross-compiling. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
c007fc401f
commit
b06688e585
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ class Gmp < Formula
|
|||
args << "--build=x86_64-apple-darwin"
|
||||
else
|
||||
ENV.m32
|
||||
args << "--host=none-apple-darwin"
|
||||
args << "--build=none-apple-darwin"
|
||||
end
|
||||
|
||||
system "./configure", *args
|
||||
|
|
|
@ -25,7 +25,7 @@ class Mpfr < Formula
|
|||
args << "--build=x86_64-apple-darwin"
|
||||
else
|
||||
ENV.m32
|
||||
args << "--host=none-apple-darwin"
|
||||
args << "--build=none-apple-darwin"
|
||||
end
|
||||
|
||||
system "./configure", *args
|
||||
|
|
Loading…
Reference in a new issue