mpgtx: fix build on 10.9

Fixes Homebrew/homebrew#31293.
This commit is contained in:
Jack Nagel 2014-08-02 20:59:09 -05:00
parent ad7917dff1
commit 81291e485c

View file

@ -9,7 +9,8 @@ class Mpgtx < Formula
system "./configure", "--parachute", system "./configure", "--parachute",
"--prefix=#{prefix}", "--prefix=#{prefix}",
"--manprefix=#{man}" "--manprefix=#{man}"
system "make" # Unset LFLAGS, "-s" causes the linker to crash
system "make", "LFLAGS="
# Overide BSD incompatible cp flags set in makefile # Overide BSD incompatible cp flags set in makefile
system "make install cpflags=RP" system "make install cpflags=RP"
end end