Changed a stray elsif to an else.
--- MacRuby/branches/experimental/rakelib/builder.rb 2009-06-23 20:22:25 UTC (rev 1919)
+++ MacRuby/branches/experimental/rakelib/builder.rb 2009-06-23 20:47:10 UTC (rev 1920)
@@ -88,7 +88,7 @@
if (USE_CLANG) and (`sw_vers -productVersion`.strip >= '10.6')
CC = '/usr/bin/clang'
CPP = '/usr/bin/llvm-g++-4.2'
-elsif
+else
CC = '/usr/bin/gcc'
CPP = '/usr/bin/g++'
end