Title: [161772] trunk
- Revision
- 161772
- Author
- [email protected]
- Date
- 2014-01-11 11:48:08 -0800 (Sat, 11 Jan 2014)
Log Message
[Mac] xcodebuild color output is suppressed when using make
https://bugs.webkit.org/show_bug.cgi?id=126815
Reviewed by Anders Carlsson.
WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
format its output with color and emphasis.
* Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
xcodebuild limitations, this restores some of the formatting, but not all of it.
Modified Paths
Diff
Modified: trunk/ChangeLog (161771 => 161772)
--- trunk/ChangeLog 2014-01-11 19:31:26 UTC (rev 161771)
+++ trunk/ChangeLog 2014-01-11 19:48:08 UTC (rev 161772)
@@ -1,3 +1,16 @@
+2014-01-11 Dan Bernstein <[email protected]>
+
+ [Mac] xcodebuild color output is suppressed when using make
+ https://bugs.webkit.org/show_bug.cgi?id=126815
+
+ Reviewed by Anders Carlsson.
+
+ WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
+ format its output with color and emphasis.
+
+ * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
+ xcodebuild limitations, this restores some of the formatting, but not all of it.
+
2014-01-10 Benjamin Poulain <[email protected]>
Remove the BlackBerry port from trunk
Modified: trunk/Makefile.shared (161771 => 161772)
--- trunk/Makefile.shared 2014-01-11 19:31:26 UTC (rev 161771)
+++ trunk/Makefile.shared 2014-01-11 19:48:08 UTC (rev 161772)
@@ -1,6 +1,6 @@
SCRIPTS_PATH ?= ../Tools/Scripts
-XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_OPTIONS)` $(ARGS)
+XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_OPTIONS)` COLOR_DIAGNOSTICS=YES $(ARGS)
ifneq (,$(SDKROOT))
XCODE_OPTIONS += SDKROOT=$(SDKROOT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes