aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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