aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2012-08-19 17:37:02 -0400
committerMax Howell2012-08-21 12:09:06 -0400
commite098489e65c48ce7f9c6f0d5d4bd0b8e112c4601 (patch)
tree032192c467b8e1c1a46766f8e9e59a080c433bd7 /Library
parentda796c793a4dfc3c8fd5625a0fd084834250a4db (diff)
downloadhomebrew-e098489e65c48ce7f9c6f0d5d4bd0b8e112c4601.tar.bz2
Make lasi build
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/lasi.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/lasi.rb b/Library/Formula/lasi.rb
index 5eb81dea5..5e5645d18 100644
--- a/Library/Formula/lasi.rb
+++ b/Library/Formula/lasi.rb
@@ -13,7 +13,10 @@ class Lasi < Formula
depends_on 'doxygen'
def install
- system "cmake", ".", *std_cmake_args
+ # None is valid, but lasi's CMakeFiles doesn't think so for some reason
+ args = std_cmake_args - %w{-DCMAKE_BUILD_TYPE=None}
+
+ system "cmake", ".", "-DCMAKE_BUILD_TYPE=Release", *args
system "make install"
end
end