aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-12-31 19:57:14 -0600
committerJack Nagel2013-12-31 19:57:43 -0600
commit8befc4e243270007ed8be6ae046a6e6afe371f8f (patch)
tree00ae2f26d743fce0a7c7206e1e93c4db5764a593 /Library/Formula
parent9af497fcacecc72bde13b88e807e0fd29df87e56 (diff)
downloadhomebrew-8befc4e243270007ed8be6ae046a6e6afe371f8f.tar.bz2
mu: fix miscompilation on 10.9
Fixes #25524.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mu.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb
index 120be58be..1914cf1d6 100644
--- a/Library/Formula/mu.rb
+++ b/Library/Formula/mu.rb
@@ -40,11 +40,17 @@ class Mu < Formula
# shipped by default with Mac OS X is too old.
ENV['EMACS'] = 'no' unless build.with? 'emacs'
+ # I dunno.
+ # https://github.com/djcb/mu/issues/332
+ # https://github.com/Homebrew/homebrew/issues/25524
+ ENV.delete 'MACOSX_DEPLOYMENT_TARGET'
+
system 'autoreconf', '-ivf' if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-gui=none"
system "make"
+ system "make test"
system "make install"
end