Title: [147157] trunk/Source/WebCore
Revision
147157
Author
[email protected]
Date
2013-03-28 14:31:38 -0700 (Thu, 28 Mar 2013)

Log Message

Remove unnecessary 1 second sleep on windows from preprocessor.pm
https://bugs.webkit.org/show_bug.cgi?id=113536

Unreviewed, partial rollout of r146661.

This rolls out one line of 146661 that slows down the windows build significantly.

* bindings/scripts/preprocessor.pm:
(applyPreprocessor):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (147156 => 147157)


--- trunk/Source/WebCore/ChangeLog	2013-03-28 21:03:44 UTC (rev 147156)
+++ trunk/Source/WebCore/ChangeLog	2013-03-28 21:31:38 UTC (rev 147157)
@@ -1,3 +1,15 @@
+2013-03-28  James Robinson  <[email protected]>
+
+        Remove unnecessary 1 second sleep on windows from preprocessor.pm
+        https://bugs.webkit.org/show_bug.cgi?id=113536
+
+        Unreviewed, partial rollout of r146661.
+
+        This rolls out one line of 146661 that slows down the windows build significantly.
+
+        * bindings/scripts/preprocessor.pm:
+        (applyPreprocessor):
+
 2013-03-28  Levi Weintraub  <[email protected]>
 
         Enable font measurement optimization for Chromium-mac when there are no font-feature-settings.

Modified: trunk/Source/WebCore/bindings/scripts/preprocessor.pm (147156 => 147157)


--- trunk/Source/WebCore/bindings/scripts/preprocessor.pm	2013-03-28 21:03:44 UTC (rev 147156)
+++ trunk/Source/WebCore/bindings/scripts/preprocessor.pm	2013-03-28 21:31:38 UTC (rev 147157)
@@ -85,7 +85,7 @@
                 # name isn't needlessly echoed.
                 use Symbol 'gensym'; my $err = gensym;
                 $pid = open3(\*PP_IN, \*PP_OUT, $err, split(' ', $preprocessor), @args, @macros, $fileName);
-                sleep 1;
+                1;
             } or do {
                 sleep 1;
             }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to