Title: [178537] trunk/Source/WebCore
Revision
178537
Author
[email protected]
Date
2015-01-15 15:57:34 -0800 (Thu, 15 Jan 2015)

Log Message

Intermittent WebCore build failures - CSSPropertyNames.gperf: No keywords in input file! calling gperf failed: 256 at WebCore/css/makeprop.pl line 901
https://bugs.webkit.org/show_bug.cgi?id=140521

Reviewed by Alexey Proskuryakov.

Close the CSSPropertyNames.gperf file before calling gperf on it
to make sure the content we wrote was flushed. This was causing
intermittent build failures.

* css/makeprop.pl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (178536 => 178537)


--- trunk/Source/WebCore/ChangeLog	2015-01-15 23:42:11 UTC (rev 178536)
+++ trunk/Source/WebCore/ChangeLog	2015-01-15 23:57:34 UTC (rev 178537)
@@ -1,3 +1,16 @@
+2015-01-15  Chris Dumez  <[email protected]>
+
+        Intermittent WebCore build failures - CSSPropertyNames.gperf: No keywords in input file! calling gperf failed: 256 at WebCore/css/makeprop.pl line 901
+        https://bugs.webkit.org/show_bug.cgi?id=140521
+
+        Reviewed by Alexey Proskuryakov.
+
+        Close the CSSPropertyNames.gperf file before calling gperf on it
+        to make sure the content we wrote was flushed. This was causing
+        intermittent build failures.
+
+        * css/makeprop.pl:
+
 2015-01-15  Zalan Bujtas  <[email protected]>
 
         LayerFragment should be able to intersect with ClipRect.

Modified: trunk/Source/WebCore/css/makeprop.pl (178536 => 178537)


--- trunk/Source/WebCore/css/makeprop.pl	2015-01-15 23:42:11 UTC (rev 178536)
+++ trunk/Source/WebCore/css/makeprop.pl	2015-01-15 23:57:34 UTC (rev 178537)
@@ -256,6 +256,8 @@
 #endif
 EOF
 
+close GPERF;
+
 open HEADER, ">CSSPropertyNames.h" || die "Could not open CSSPropertyNames.h for writing";
 print HEADER << "EOF";
 /* This file is automatically generated from CSSPropertyNames.in by makeprop, do not edit */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to