From 16f659451a8d2813729e0d8d303f8a6429050db3 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Wed, 7 Sep 2011 12:56:23 -0700 Subject: [PATCH] Python easy_install just needs the package adding 'install' to the command line breaks things Closes Homebrew/homebrew#7489. Signed-off-by: Charlie Sharpsteen --- Library/Homebrew/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index b55596aa42..72c62dcc79 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -84,7 +84,7 @@ class UnsatisfiedExternalDependencyError < Homebrew::InstallationError def command_line case type when :python - "easy_install install" + "easy_install" when :ruby "gem install" when :perl