aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Prinz2011-05-02 18:36:35 +0200
committerAdam Vandenberg2011-05-02 09:59:24 -0700
commitf4d2efefceb2c0a090be952d77bef6864776c8e2 (patch)
tree02be65038f60836cfa91b2e6725200003891ad83
parenta55bab4dda7d80c5eafb474ad078db44b64e1b06 (diff)
downloadhomebrew-f4d2efefceb2c0a090be952d77bef6864776c8e2.tar.bz2
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>
-rw-r--r--Library/Formula/tarsnap.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/tarsnap.rb b/Library/Formula/tarsnap.rb
index 0ba981449..e3dbb741d 100644
--- a/Library/Formula/tarsnap.rb
+++ b/Library/Formula/tarsnap.rb
@@ -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