Title: [165238] trunk/Tools
- Revision
- 165238
- Author
- [email protected]
- Date
- 2014-03-06 18:16:20 -0800 (Thu, 06 Mar 2014)
Log Message
filter-build-webkit should not strip .o
https://bugs.webkit.org/show_bug.cgi?id=129614
Patch by Joseph Pecoraro <[email protected]> on 2014-03-06
Reviewed by Dean Jackson.
This makes it much easier to jump from the failing output at
the end back up to the compile errors earlier in the output.
* Scripts/filter-build-webkit:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (165237 => 165238)
--- trunk/Tools/ChangeLog 2014-03-07 02:14:04 UTC (rev 165237)
+++ trunk/Tools/ChangeLog 2014-03-07 02:16:20 UTC (rev 165238)
@@ -1,3 +1,15 @@
+2014-03-06 Joseph Pecoraro <[email protected]>
+
+ filter-build-webkit should not strip .o
+ https://bugs.webkit.org/show_bug.cgi?id=129614
+
+ Reviewed by Dean Jackson.
+
+ This makes it much easier to jump from the failing output at
+ the end back up to the compile errors earlier in the output.
+
+ * Scripts/filter-build-webkit:
+
2014-03-06 Anders Carlsson <[email protected]>
Build WebKit2 before building WebKit
Modified: trunk/Tools/Scripts/filter-build-webkit (165237 => 165238)
--- trunk/Tools/Scripts/filter-build-webkit 2014-03-07 02:14:04 UTC (rev 165237)
+++ trunk/Tools/Scripts/filter-build-webkit 2014-03-07 02:16:20 UTC (rev 165238)
@@ -144,7 +144,7 @@
printLine("Build Succeeded", STYLE_SUCCESS);
} elsif ($line =~ /^(\e\[1m)?(PhaseScriptExecution|ClCompile|CompileC|Distributed-CompileC|Ld|PBXCp|CpResource|CopyPNGFile|CopyTiffFile|CpHeader|Processing|ProcessInfoPlistFile|ProcessPCH|ProcessPCH\+\+|Touch|Libtool|CopyStringsFile|Mig|CreateUniversalBinary|Analyze|ProcessProductPackaging|CodeSign|SymLink|Updating|CompileXIB|StripNIB|CopyPlistFile|GenerateDSYMFile)(\e\[0m)? ("[^"]+"|(\\|(?<=\\)\s|\S)+)?/) {
my ($command, $path) = ($2, basename($4));
- $path =~ s/("|\\|\.[oah]$)//g;
+ $path =~ s/("|\\|\.[ah]$)//g;
printLine("$command $path", STYLE_PLAIN);
} elsif ($line =~ /^\S+mkdir .*?(\S+)$/) {
my $path = basename($1);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes