From f3afafb630f6ddd99b8ce24cd413b0ee1145e4d5 Mon Sep 17 00:00:00 2001 From: Robin Ramael Date: Sat, 7 May 2011 21:22:57 +0200 Subject: 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 --- Library/Formula/bash.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Library/Formula') 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 -- cgit v1.2.3