Changeset 23626

Show
Ignore:
Timestamp:
06/19/07 17:00:37 (18 months ago)
Author:
andrew
Message:

Reviewed by Mark Rowe.


Support applications with spaces or special characters in their names

  • Scripts/run-webkit-app:
Location:
trunk/WebKitTools
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r23577 r23626  
     12007-06-19  Andrew Wellington  <proton@wiretapped.net> 
     2 
     3        Reviewed by Mark Rowe. 
     4         
     5        Support applications with spaces or special characters in their names 
     6 
     7        * Scripts/run-webkit-app: 
     8 
    192007-06-18  Anders Carlsson  <andersca@apple.com> 
    210 
  • trunk/WebKitTools/Scripts/run-webkit-app

    r12234 r23626  
    4646$ENV{DYLD_FRAMEWORK_PATH} = $productDir; 
    4747$ENV{WEBKIT_UNSET_DYLD_FRAMEWORK_PATH} = "YES"; 
    48 exec "open -a @ARGV"; 
     48 
     49unshift(@ARGV, "-a"); 
     50exec "open", @ARGV;