Skip to content

Commit 2fffef9

Browse files
author
Dan Bernstein
committed
[Xcode] With default verbosity, make(1) output no longer hides environment variable listings
https://bugs.webkit.org/show_bug.cgi?id=159392 Reviewed by Alexey Proskuryakov. * Makefile.shared: Pass the -hideShellScriptEnvironment option to xcodebuild instead of piping its output through an ineffective "grep -v setenv", Canonical link: https://commits.webkit.org/177529@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@202798 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent db4544b commit 2fffef9

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2016-07-03 Dan Bernstein <[email protected]>
2+
3+
[Xcode] With default verbosity, make(1) output no longer hides environment variable listings
4+
https://bugs.webkit.org/show_bug.cgi?id=159392
5+
6+
Reviewed by Alexey Proskuryakov.
7+
8+
* Makefile.shared: Pass the -hideShellScriptEnvironment option to xcodebuild instead of
9+
piping its output through an ineffective "grep -v setenv",
10+
111
2016-07-01 Konstantin Tokarev <[email protected]>
212

313
[cmake] Make LEGACY_WEB_AUDIO depend on WEB_AUDIO.

Makefile.shared

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ DEFAULT_VERBOSITY := $(shell defaults read org.webkit.BuildConfiguration BuildTr
3131
VERBOSITY ?= $(DEFAULT_VERBOSITY)
3232

3333
ifeq ($(VERBOSITY),default)
34-
OUTPUT_FILTER = grep -v setenv
34+
OUTPUT_FILTER = cat
35+
XCODE_OPTIONS += -hideShellScriptEnvironment
3536
else
3637
ifeq ($(VERBOSITY),noisy)
3738
OUTPUT_FILTER = cat

0 commit comments

Comments
 (0)