diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/macvim.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb index b00781210..0f562269f 100644 --- a/Library/Formula/macvim.rb +++ b/Library/Formula/macvim.rb @@ -29,7 +29,7 @@ class Macvim < Formula # Set ARCHFLAGS so the Python app (with C extension) that is # used to create the custom icons will not try to compile in # PPC support (which isn't needed in Homebrew-supported systems.) - arch = Hardware.is_64_bit? ? 'x86_64' : 'i386' + arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386' ENV['ARCHFLAGS'] = "-arch #{arch}" args = ["--with-macsdk=#{MACOS_VERSION}", |
