diff options
| author | Jack Nagel | 2014-04-26 15:44:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-26 15:44:18 -0500 |
| commit | 14833f99e82a462906f3820e828f84e79932c001 (patch) | |
| tree | 574ad691f15d9228b7510d3a18271c1357bfa314 /Library | |
| parent | b724c92a942a5e3aac5b421a81ab2acc7cd61529 (diff) | |
| download | homebrew-14833f99e82a462906f3820e828f84e79932c001.tar.bz2 | |
fox: fix build on 10.9
Fixes #27850.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fox.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/fox.rb b/Library/Formula/fox.rb index fdfc58534..4f1fb91b8 100644 --- a/Library/Formula/fox.rb +++ b/Library/Formula/fox.rb @@ -23,6 +23,7 @@ class Fox < Formula "--prefix=#{prefix}", "--with-x", "--with-opengl" - system "make install" + # Unset LDFLAGS, "-s" causes the linker to crash + system "make", "install", "LDFLAGS=" end end |
