aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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