aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-08-02 20:59:09 -0500
committerJack Nagel2014-08-02 21:00:55 -0500
commitd01fe63a3144b9f93734036a766b1b204bcfe70d (patch)
treed5df9fe2ee1773bae134bcf3a0b255e72d9f68c9 /Library
parent3597c0d13ed956bc6ba75eb97f12928065c4a14c (diff)
downloadhomebrew-d01fe63a3144b9f93734036a766b1b204bcfe70d.tar.bz2
mpgtx: fix build on 10.9
Fixes #31293.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mpgtx.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/mpgtx.rb b/Library/Formula/mpgtx.rb
index 9cf0f73a1..26a82208e 100644
--- a/Library/Formula/mpgtx.rb
+++ b/Library/Formula/mpgtx.rb
@@ -9,7 +9,8 @@ class Mpgtx < Formula
system "./configure", "--parachute",
"--prefix=#{prefix}",
"--manprefix=#{man}"
- system "make"
+ # Unset LFLAGS, "-s" causes the linker to crash
+ system "make", "LFLAGS="
# Overide BSD incompatible cp flags set in makefile
system "make install cpflags=RP"
end