Title: [112486] trunk/Tools
- Revision
- 112486
- Author
- [email protected]
- Date
- 2012-03-28 18:29:16 -0700 (Wed, 28 Mar 2012)
Log Message
Fix --no-saved-state.
Ignore the flag before Lion, rather than making it specific to Lion.
Rubber-stamped by Dan Bernstein.
* Scripts/webkitdirs.pm:
(argumentsForRunAndDebugMacWebKitApp):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (112485 => 112486)
--- trunk/Tools/ChangeLog 2012-03-29 01:14:05 UTC (rev 112485)
+++ trunk/Tools/ChangeLog 2012-03-29 01:29:16 UTC (rev 112486)
@@ -1,3 +1,14 @@
+2012-03-28 Mark Rowe <[email protected]>
+
+ Fix --no-saved-state.
+
+ Ignore the flag before Lion, rather than making it specific to Lion.
+
+ Rubber-stamped by Dan Bernstein.
+
+ * Scripts/webkitdirs.pm:
+ (argumentsForRunAndDebugMacWebKitApp):
+
2012-03-28 Dave Tharp <[email protected]>
Add dtharp to contributors list
Modified: trunk/Tools/Scripts/webkitdirs.pm (112485 => 112486)
--- trunk/Tools/Scripts/webkitdirs.pm 2012-03-29 01:14:05 UTC (rev 112485)
+++ trunk/Tools/Scripts/webkitdirs.pm 2012-03-29 01:29:16 UTC (rev 112486)
@@ -2479,7 +2479,7 @@
sub argumentsForRunAndDebugMacWebKitApp()
{
my @args = @ARGV;
- push @args, ("-ApplePersistenceIgnoreState", "YES") if isLion() && checkForArgumentAndRemoveFromArrayRef("--no-saved-state", \@args);
+ push @args, ("-ApplePersistenceIgnoreState", "YES") if !isLeopard() && !isSnowLeopard() && checkForArgumentAndRemoveFromArrayRef("--no-saved-state", \@args);
return @args;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes