diff options
| author | Adam Vandenberg | 2013-06-05 21:07:21 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-05 21:07:21 -0700 |
| commit | d4d9fddbaba8401b86e48824fcb37804ef3cdaa0 (patch) | |
| tree | e8a3e4445eb55fbc7c7ac4f24525a289dad1ee0d | |
| parent | 3f3c5ae97676d9d5d6723fa1e4a851937b904da6 (diff) | |
| download | homebrew-d4d9fddbaba8401b86e48824fcb37804ef3cdaa0.tar.bz2 | |
omniorb: remove variable
| -rw-r--r-- | Library/Formula/omniorb.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/omniorb.rb b/Library/Formula/omniorb.rb index ad4d796fa..6ccb9a9f7 100644 --- a/Library/Formula/omniorb.rb +++ b/Library/Formula/omniorb.rb @@ -20,14 +20,13 @@ class Omniorb < Formula end def install - args = ["--prefix=#{prefix}"] - system "./configure", *args + system "./configure", "--prefix=#{prefix}" system "make" system "make install" python do OmniorbBindings.new.brew do - system "./configure", *args + system "./configure", "--prefix=#{prefix}" system "make install" end end |
