diff options
| author | Adam Vandenberg | 2014-02-25 07:45:26 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2014-02-25 20:29:08 -0800 |
| commit | 62615b4416e579f6500a385f69df170aa5e45d0e (patch) | |
| tree | ee7994a2e56ec09586f35af74ec8459bdb68f50e /Library | |
| parent | c5c5fe00540b5364b0862b7fb00b88e5873ed99b (diff) | |
| download | homebrew-62615b4416e579f6500a385f69df170aa5e45d0e.tar.bz2 | |
clam: use scons helper
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/clam.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/clam.rb b/Library/Formula/clam.rb index 446e5de56..fc5a53c1f 100644 --- a/Library/Formula/clam.rb +++ b/Library/Formula/clam.rb @@ -16,8 +16,8 @@ class Clam < Formula depends_on 'id3lib' def install - system "scons", "configure", "prefix=#{prefix}", "with_ladspa=no", "xmlbackend=none" - system "scons" - system "scons install" + scons "configure", "prefix=#{prefix}", "with_ladspa=no", "xmlbackend=none" + scons + scons "install" end end |
