diff options
| author | Jack Morrison | 2013-09-16 14:23:19 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-16 19:36:05 -0700 |
| commit | 556d0ff117cd9af91d32fa334105ffc35fb42799 (patch) | |
| tree | c151ce91f022c99db85ef54d095e6ff88fca3fd7 | |
| parent | 06230dff8514ee7fbf3b9f3658b87b648405e32b (diff) | |
| download | homebrew-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.rb | 1 |
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" |
