aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Morrison2013-09-16 14:23:19 -0400
committerAdam Vandenberg2013-09-16 19:36:05 -0700
commit556d0ff117cd9af91d32fa334105ffc35fb42799 (patch)
treec151ce91f022c99db85ef54d095e6ff88fca3fd7
parent06230dff8514ee7fbf3b9f3658b87b648405e32b (diff)
downloadhomebrew-556d0ff117cd9af91d32fa334105ffc35fb42799.tar.bz2
bullet: install extra libraries
Extra libraries were being compiled, but not installed. Closes #22589. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/bullet.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/bullet.rb b/Library/Formula/bullet.rb
index cc781cf25..c688850c2 100644
--- a/Library/Formula/bullet.rb
+++ b/Library/Formula/bullet.rb
@@ -30,6 +30,7 @@ class Bullet < Formula
args << "-DCMAKE_OSX_ARCHITECTURES='#{Hardware::CPU.universal_archs.as_cmake_arch_flags}" if build.universal?
args << "-DBUILD_DEMOS=OFF" if not build.include? "build-demo"
args << "-DBUILD_EXTRAS=OFF" if not build.include? "build-extra"
+ args << "-DINSTALL_EXTRA_LIBS=ON" if build.include? "build-extra"
system "cmake", *args
system "make"