Title: [165744] trunk/Tools
Revision
165744
Author
[email protected]
Date
2014-03-17 10:50:16 -0700 (Mon, 17 Mar 2014)

Log Message

sort-export-file --help doesn't work (missing 'use')
https://bugs.webkit.org/show_bug.cgi?id=130338

Reviewed by Anders Carlsson.

* Scripts/sort-export-file:
Add a missing 'use', and fix a typo in an error message.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (165743 => 165744)


--- trunk/Tools/ChangeLog	2014-03-17 17:48:01 UTC (rev 165743)
+++ trunk/Tools/ChangeLog	2014-03-17 17:50:16 UTC (rev 165744)
@@ -1,3 +1,13 @@
+2014-03-17  Tim Horton  <[email protected]>
+
+        sort-export-file --help doesn't work (missing 'use')
+        https://bugs.webkit.org/show_bug.cgi?id=130338
+
+        Reviewed by Anders Carlsson.
+
+        * Scripts/sort-export-file:
+        Add a missing 'use', and fix a typo in an error message.
+
 2014-03-17  Martin Robinson  <[email protected]>
 
         [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate

Modified: trunk/Tools/Scripts/sort-export-file (165743 => 165744)


--- trunk/Tools/Scripts/sort-export-file	2014-03-17 17:48:01 UTC (rev 165743)
+++ trunk/Tools/Scripts/sort-export-file	2014-03-17 17:50:16 UTC (rev 165744)
@@ -29,6 +29,7 @@
 use strict;
 
 use Cwd;
+use File::Basename;
 use FindBin;
 use Getopt::Long;
 
@@ -111,7 +112,7 @@
             next;
         }
         if ($line =~ /^\#endif$/) {
-            popTopConditional() or sawError("#else without matching #if");
+            popTopConditional() or sawError("#endif without matching #if");
             next;
         }
         if ($line =~ /^(\.?[A-Za-z0-9_\?]+)$/) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to