Changeset 161772 in webkit
- Timestamp:
- Jan 11, 2014, 11:48:08 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r161699 r161772 1 2014-01-11 Dan Bernstein <mitz@apple.com> 2 3 [Mac] xcodebuild color output is suppressed when using make 4 https://bugs.webkit.org/show_bug.cgi?id=126815 5 6 Reviewed by Anders Carlsson. 7 8 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to 9 format its output with color and emphasis. 10 11 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to 12 xcodebuild limitations, this restores some of the formatting, but not all of it. 13 1 14 2014-01-10 Benjamin Poulain <bpoulain@apple.com> 2 15 -
trunk/Makefile.shared
r142207 r161772 1 1 SCRIPTS_PATH ?= ../Tools/Scripts 2 2 3 XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_OPTIONS)` $(ARGS)3 XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_OPTIONS)` COLOR_DIAGNOSTICS=YES $(ARGS) 4 4 5 5 ifneq (,$(SDKROOT))
Note:
See TracChangeset
for help on using the changeset viewer.