diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/convertlit.rb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Library/Formula/convertlit.rb b/Library/Formula/convertlit.rb index e678942f3..7bf7ade23 100644 --- a/Library/Formula/convertlit.rb +++ b/Library/Formula/convertlit.rb @@ -14,13 +14,8 @@ class Convertlit < Formula s.gsub! "../libtommath-0.30/libtommath.a", "#{HOMEBREW_PREFIX}/lib/libtommath.a" end - cd "lib" do - system "make" - end - - cd "clit18" do - system "make" - bin.install 'clit' - end + system "make", "-C", "lib" + system "make", "-C", "clit18" + bin.install "clit18/clit" end end |
