aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-05 21:07:21 -0700
committerAdam Vandenberg2013-06-05 21:07:21 -0700
commitd4d9fddbaba8401b86e48824fcb37804ef3cdaa0 (patch)
treee8a3e4445eb55fbc7c7ac4f24525a289dad1ee0d /Library
parent3f3c5ae97676d9d5d6723fa1e4a851937b904da6 (diff)
downloadhomebrew-d4d9fddbaba8401b86e48824fcb37804ef3cdaa0.tar.bz2
omniorb: remove variable
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/omniorb.rb5
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