Revision
1920
Author
pthomson@apple.com
Date
2009-06-23 13:47:10 -0700 (Tue, 23 Jun 2009)

Log Message

Changed a stray elsif to an else.

Modified Paths

Diff

Modified: MacRuby/branches/experimental/rakelib/builder.rb (1919 => 1920)


--- 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