Revision: 577 http://trac.macosforge.org/projects/ruby/changeset/577 Author: lsansonetti@apple.com Date: 2008-09-08 12:48:32 -0700 (Mon, 08 Sep 2008) Log Message: ----------- make sure passing 'enable_debug_logging=false' actually works Modified Paths: -------------- MacRuby/trunk/Rakefile Modified: MacRuby/trunk/Rakefile =================================================================== --- MacRuby/trunk/Rakefile 2008-09-08 06:36:47 UTC (rev 576) +++ MacRuby/trunk/Rakefile 2008-09-08 19:48:32 UTC (rev 577) @@ -21,7 +21,7 @@ NO_WARN_BUILD = !do_option('allow_build_warnings', false) BUILD_AS_EMBEDDABLE = do_option('build_as_embeddable', false) ENABLE_STATIC_LIBRARY = do_option('enable_static_library', 'no') { 'yes' } -ENABLE_DEBUG_LOGGING = do_option('enable_debug_logging', true) +ENABLE_DEBUG_LOGGING = do_option('enable_debug_logging', true) { |x| x == 'true' } # TODO: we should find a way to document these options in rake's --help