diff options
| author | Robin Ramael | 2011-05-07 21:22:57 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-05-07 12:38:00 -0700 |
| commit | f3afafb630f6ddd99b8ce24cd413b0ee1145e4d5 (patch) | |
| tree | e8f40ad1ec472bb591f2e58859ca28eb2b630aea | |
| parent | aae084c9db223593b28f3326dd64c9702f2464db (diff) | |
| download | homebrew-f3afafb630f6ddd99b8ce24cd413b0ee1145e4d5.tar.bz2 | |
Fixed syntax error in bash formula.
In the last commit to the bash formula, the install function declaration
was omitted, this commit adds it back in.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/bash.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/bash.rb b/Library/Formula/bash.rb index a284552ed..d7bf09ae5 100644 --- a/Library/Formula/bash.rb +++ b/Library/Formula/bash.rb @@ -13,8 +13,8 @@ class Bash < Formula {'p0' => (1..patch_level).map { |i| "http://ftp.gnu.org/gnu/bash/bash-4.2-patches/bash42-%03d" % i }} end - system "./configure", "--prefix=#{prefix}", - "--with-installed-readline" + def install + system "./configure", "--prefix=#{prefix}", "--with-installed-readline" system "make install" end end |
