[822] MacRuby/trunk/lib/hotcocoa/application_builder.rb
Revision: 822 http://trac.macosforge.org/projects/ruby/changeset/822 Author: lsansonetti@apple.com Date: 2009-02-28 13:13:53 -0800 (Sat, 28 Feb 2009) Log Message: ----------- no need to copy the BridgeSupport dylib files Modified Paths: -------------- MacRuby/trunk/lib/hotcocoa/application_builder.rb Modified: MacRuby/trunk/lib/hotcocoa/application_builder.rb =================================================================== --- MacRuby/trunk/lib/hotcocoa/application_builder.rb 2009-02-28 21:09:05 UTC (rev 821) +++ MacRuby/trunk/lib/hotcocoa/application_builder.rb 2009-02-28 21:13:53 UTC (rev 822) @@ -93,7 +93,6 @@ def deploy copy_framework - copy_bs_dylibs end def deploy? @@ -150,15 +149,6 @@ end `install_name_tool -change #{current_macruby_path}/usr/lib/libmacruby.dylib @executable_path/../Frameworks/MacRuby.framework/Versions/#{current_macruby_version}/usr/lib/libmacruby.dylib '#{macos_root}/#{objective_c_executable_file}'` end - - def copy_bs_dylibs - unless File.exist?(bridgesupport_root) - FileUtils.mkdir_p(bridgesupport_root) - Dir.glob('/System/Library/Frameworks/**/BridgeSupport/*.dylib').each do |p| - FileUtils.cp(p, bridgesupport_root) - end - end - end def copy_sources if secure?
participants (1)
-
source_changes@macosforge.org