Revision: 2906 http://trac.macosforge.org/projects/ruby/changeset/2906 Author: lsansonetti@apple.com Date: 2009-10-27 16:24:00 -0700 (Tue, 27 Oct 2009) Log Message: ----------- make sure the target won't fail in the TARGET_BUILD_DIR variable contains spaces (thanks dylan at ideaswarm.com) Modified Paths: -------------- MacRuby/trunk/misc/xcode-templates/Project Templates/Application/MacRuby Application/MacRubyApp.xcodeproj/project.pbxproj MacRuby/trunk/misc/xcode-templates/Target Templates/Ruby/Embed MacRuby.trgttmpl Modified: MacRuby/trunk/misc/xcode-templates/Project Templates/Application/MacRuby Application/MacRubyApp.xcodeproj/project.pbxproj =================================================================== --- MacRuby/trunk/misc/xcode-templates/Project Templates/Application/MacRuby Application/MacRubyApp.xcodeproj/project.pbxproj 2009-10-27 23:10:10 UTC (rev 2905) +++ MacRuby/trunk/misc/xcode-templates/Project Templates/Application/MacRuby Application/MacRubyApp.xcodeproj/project.pbxproj 2009-10-27 23:24:00 UTC (rev 2906) @@ -255,7 +255,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "# The macruby_deploy command-line tool will make sure your app will embed the MacRuby framework. Default options will be used. Pass the -h option to get more details.\nPATH=\"$PATH:/usr/local/bin\" macruby_deploy $TARGET_BUILD_DIR/$PROJECT_NAME.app"; + shellScript = "# The macruby_deploy command-line tool will make sure your app will embed the MacRuby framework. Default options will be used. Pass the -h option to get more details.\nPATH=\"$PATH:/usr/local/bin\" macruby_deploy \"$TARGET_BUILD_DIR/$PROJECT_NAME.app\""; }; /* End PBXShellScriptBuildPhase section */ Modified: MacRuby/trunk/misc/xcode-templates/Target Templates/Ruby/Embed MacRuby.trgttmpl =================================================================== --- MacRuby/trunk/misc/xcode-templates/Target Templates/Ruby/Embed MacRuby.trgttmpl 2009-10-27 23:10:10 UTC (rev 2905) +++ MacRuby/trunk/misc/xcode-templates/Target Templates/Ruby/Embed MacRuby.trgttmpl 2009-10-27 23:24:00 UTC (rev 2906) @@ -7,7 +7,7 @@ { Class = ShellScript; ShellPath = "/bin/sh"; - ShellScript = "# The macruby_deploy command-line tool will make sure your app will embed the MacRuby framework. Default options will be used. Pass the -h option to get more details.\nPATH=\"$PATH:/usr/local/bin\" macruby_deploy $TARGET_BUILD_DIR/$PROJECT_NAME.app"; + ShellScript = "# The macruby_deploy command-line tool will make sure your app will embed the MacRuby framework. Default options will be used. Pass the -h option to get more details.\nPATH=\"$PATH:/usr/local/bin\" macruby_deploy \"$TARGET_BUILD_DIR/$PROJECT_NAME.app\""; }, ); }
participants (1)
-
source_changes@macosforge.org