aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCharles Dale2009-11-09 14:29:34 +1100
committerCharles Dale2009-11-09 14:29:34 +1100
commit6a53c07ba371a36de9fe20e3c9603eea7eddca4d (patch)
tree382e6fc9cb6a1bba6034673f95c4593a096c306f /Library/Formula
parent4f59106c6c2ed6cb70d8c23ff022ee3a6c0c61d9 (diff)
downloadhomebrew-6a53c07ba371a36de9fe20e3c9603eea7eddca4d.tar.bz2
Fix malloc crash due to case-insensitive filesystem per http://trac.macports.org/changeset/56880
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/htop.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/htop.rb b/Library/Formula/htop.rb
index 5a5f515ee..f578207f2 100644
--- a/Library/Formula/htop.rb
+++ b/Library/Formula/htop.rb
@@ -9,7 +9,7 @@ class Htop <Formula
def install
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
- system "make install"
+ system "make", "install", "DEFAULT_INCLUDES='-iquote .'"
end
end