diff options
| author | Francisco Facioni | 2013-11-13 12:09:46 -0300 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-11-13 21:09:49 -0800 | 
| commit | f331667b46dcf1efd15f7f97fa8de73cc959749d (patch) | |
| tree | f86befd2a804ca05b42fce30824e3a5e1b27e3e4 /Library | |
| parent | 316fcdbcea551f2c90c67a2b4ae8a210537b1d35 (diff) | |
| download | homebrew-f331667b46dcf1efd15f7f97fa8de73cc959749d.tar.bz2 | |
json_spirit dylib generation + static
Closes #24260.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/json_spirit.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/json_spirit.rb b/Library/Formula/json_spirit.rb index 8f05552e1..8c4d21c1b 100644 --- a/Library/Formula/json_spirit.rb +++ b/Library/Formula/json_spirit.rb @@ -13,6 +13,11 @@ class JsonSpirit < Formula      args << "-DBUILD_STATIC_LIBRARIES=ON"      system "cmake", *args +    system "make" + +    args = std_cmake_args +    args << "-DBUILD_STATIC_LIBRARIES=OFF" +    system "cmake", *args      system "make install"    end  end  | 
