Tarsnap: Remove --enable-sse2 and --disable-debug flags
* The --enable-sse2 flag causes the compile to hang when the llvm-gcc compiler that comes with Xcode 4 is used. * The configure script doesn't recognize the --disable-debug option Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
d2d7aeedaf
commit
74aceb2568
1 changed files with 2 additions and 3 deletions
|
@ -8,9 +8,8 @@ class Tarsnap < Formula
|
|||
depends_on 'lzma' => :optional
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--enable-sse2"
|
||||
system "./configure", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue