Title: [202798] trunk
Revision
202798
Author
m...@apple.com
Date
2016-07-03 22:59:26 -0700 (Sun, 03 Jul 2016)

Log Message

[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",

Modified Paths

Diff

Modified: trunk/ChangeLog (202797 => 202798)


--- trunk/ChangeLog	2016-07-04 05:39:17 UTC (rev 202797)
+++ trunk/ChangeLog	2016-07-04 05:59:26 UTC (rev 202798)
@@ -1,3 +1,13 @@
+2016-07-03  Dan Bernstein  <m...@apple.com>
+
+        [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",
+
 2016-07-01  Konstantin Tokarev  <annu...@yandex.ru>
 
         [cmake] Make LEGACY_WEB_AUDIO depend on WEB_AUDIO.

Modified: trunk/Makefile.shared (202797 => 202798)


--- trunk/Makefile.shared	2016-07-04 05:39:17 UTC (rev 202797)
+++ trunk/Makefile.shared	2016-07-04 05:59:26 UTC (rev 202798)
@@ -31,7 +31,8 @@
 VERBOSITY ?= $(DEFAULT_VERBOSITY)
 
 ifeq ($(VERBOSITY),default)
-OUTPUT_FILTER = grep -v setenv
+OUTPUT_FILTER = cat
+XCODE_OPTIONS += -hideShellScriptEnvironment
 else
 ifeq ($(VERBOSITY),noisy)
 OUTPUT_FILTER = cat
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to