aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAdam Vandenberg2010-05-31 13:17:31 -0700
committerAdam Vandenberg2010-06-01 11:56:00 -0700
commitb72ddaa42468685cae8c8f043cad2c50e93f4575 (patch)
treede005c8fdc7514494574248d2ef1447564be4ea5 /bin
parentb0bc592e17718d329b263ad5f8d44aebefa2271c (diff)
downloadbrew-b72ddaa42468685cae8c8f043cad2c50e93f4575.tar.bz2
Link to pcc and tiger branches.
sceaga maintains Tiger and PPC support for Homebrew, so change our error messages to refer to his branches.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/brew5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/brew b/bin/brew
index dda9033ed..92cd02876 100755
--- a/bin/brew
+++ b/bin/brew
@@ -35,7 +35,7 @@ case HOMEBREW_PREFIX.to_s when '/', '/usr'
abort "Cowardly refusing to continue at this prefix: #{HOMEBREW_PREFIX}"
end
if MACOS_VERSION < 10.5
- abort "Homebrew requires Leopard or higher, but you could fork it and fix that..."
+ abort "Homebrew requires Leopard or higher. For Tiger support, see:\nhttp://github.com/sceaga/homebrew/tree/tiger"
end
def dump_config
@@ -254,7 +254,8 @@ begin
############################################################ sanity checks
case Hardware.cpu_type when :ppc, :dunno
- abort "Sorry, Homebrew does not support your computer's CPU architecture."
+ abort "Sorry, Homebrew does not support your computer's CPU architecture.\n"+
+ "For PPC support, see: http://github.com/sceaga/homebrew/tree/powerpc"
end
raise "Cannot write to #{HOMEBREW_CELLAR}" if HOMEBREW_CELLAR.exist? and not HOMEBREW_CELLAR.writable?