diff options
| author | Joel Chippindale | 2009-12-10 22:57:16 +0000 |
|---|---|---|
| committer | Max Howell | 2009-12-19 15:25:41 +0000 |
| commit | 7e2bdb873dfd2ebaf549c1b10172e642a03ec7e2 (patch) | |
| tree | 8a089f524fb869c0ba94c85b949212915e2aeca3 | |
| parent | 90b6d21be7142aaf1713e1f5545ad6cd67b4cd08 (diff) | |
| download | homebrew-7e2bdb873dfd2ebaf549c1b10172e642a03ec7e2.tar.bz2 | |
Fix args for ruby-enterprise-edition formula
Without this change the following error was output for my homebrew location
==> /installer --auto /Users/joel/.homebrew/Cellar/ruby-enterprise-edition/2009.10 --no-tcmalloc -c --enable-shared
invalid option: --auto /Users/joel/.homebrew/Cellar/ruby-enterprise-edition/2009.10
| -rw-r--r-- | Library/Formula/ruby-enterprise-edition.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/ruby-enterprise-edition.rb b/Library/Formula/ruby-enterprise-edition.rb index 8e7364393..7610cd264 100644 --- a/Library/Formula/ruby-enterprise-edition.rb +++ b/Library/Formula/ruby-enterprise-edition.rb @@ -11,7 +11,7 @@ class RubyEnterpriseEdition <Formula def install ENV.gcc_4_2 # fails with LLVM - args = ['./installer', "--auto #{prefix}", '--no-tcmalloc'] + args = ['./installer', "--auto", prefix, '--no-tcmalloc'] args.push('-c --enable-shared') if ARGV.include?('--enable-shared') system *args end |
