aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-02-25 07:45:26 -0800
committerAdam Vandenberg2014-02-25 20:29:08 -0800
commit62615b4416e579f6500a385f69df170aa5e45d0e (patch)
treeee7994a2e56ec09586f35af74ec8459bdb68f50e /Library/Formula
parentc5c5fe00540b5364b0862b7fb00b88e5873ed99b (diff)
downloadhomebrew-62615b4416e579f6500a385f69df170aa5e45d0e.tar.bz2
clam: use scons helper
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/clam.rb6
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