diff options
| author | Jonathan Wright | 2010-01-02 20:34:03 +1300 |
|---|---|---|
| committer | Jonathan Wright | 2010-01-03 17:07:04 +1300 |
| commit | 22b7a4218947b45164b8746402404191bf8c3c1a (patch) | |
| tree | 10cebfbeb14ef0a5476b1b9377cb59fbd02ca848 /Library/Formula | |
| parent | ee7f610914012db6bc8b046f150d5f0ddea7b499 (diff) | |
| download | homebrew-22b7a4218947b45164b8746402404191bf8c3c1a.tar.bz2 | |
Fix xz building on x86-64
The assembly for the CRC checks fails to build for x86-64. Disable the assembly.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/xz.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/xz.rb b/Library/Formula/xz.rb index c0654b9b5..35fced15c 100644 --- a/Library/Formula/xz.rb +++ b/Library/Formula/xz.rb @@ -7,7 +7,8 @@ class Xz <Formula version '4.999.9beta' # *shrug* def install - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + # Disable the assembly CRC checks they use x86 rather than x86-64 asm and fail to build for x86-64. + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-assembler" system "make install" end end |
