diff options
| author | Adam Vandenberg | 2013-12-05 20:08:13 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-12-05 20:08:13 -0800 |
| commit | dbd07eb092aa71c3dd26bc1b65f1592980ad16f9 (patch) | |
| tree | 61e2fabd676a4df522f0027d1d0388e746f6da27 | |
| parent | cc51108677b7b14e35b601942444c93d39d6d9e4 (diff) | |
| download | homebrew-dbd07eb092aa71c3dd26bc1b65f1592980ad16f9.tar.bz2 | |
libmongoclient: uses homebrew scons
| -rw-r--r-- | Library/Formula/libmongoclient.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/libmongoclient.rb b/Library/Formula/libmongoclient.rb index 84636acad..0857bdd52 100644 --- a/Library/Formula/libmongoclient.rb +++ b/Library/Formula/libmongoclient.rb @@ -11,6 +11,8 @@ class Libmongoclient < Formula depends_on 'boost' => :build def install + scons = Formula.factory('scons').opt_prefix/'bin/scons' + args = [ "--prefix=#{prefix}", "-j#{ENV.make_jobs}", @@ -26,6 +28,6 @@ class Libmongoclient < Formula args << "--libc++" end - system 'scons', 'install-mongoclient', *args + system scons, 'install-mongoclient', *args end end |
