Title: [195673] trunk/Source/WebCore
Revision
195673
Author
[email protected]
Date
2016-01-27 08:57:31 -0800 (Wed, 27 Jan 2016)

Log Message

Stop echoing echo commands to stdout
https://bugs.webkit.org/show_bug.cgi?id=153531

Reviewed by Csaba Osztrogonác.

* DerivedSources.make:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (195672 => 195673)


--- trunk/Source/WebCore/ChangeLog	2016-01-27 15:35:58 UTC (rev 195672)
+++ trunk/Source/WebCore/ChangeLog	2016-01-27 16:57:31 UTC (rev 195673)
@@ -1,3 +1,12 @@
+2016-01-26  Anders Carlsson  <[email protected]>
+
+        Stop echoing echo commands to stdout
+        https://bugs.webkit.org/show_bug.cgi?id=153531
+
+        Reviewed by Csaba Osztrogonác.
+
+        * DerivedSources.make:
+
 2016-01-26  Jer Noble  <[email protected]>
 
         Calling video.controls=true during a scrub operation cancels scrub.

Modified: trunk/Source/WebCore/DerivedSources.make (195672 => 195673)


--- trunk/Source/WebCore/DerivedSources.make	2016-01-27 15:35:58 UTC (rev 195672)
+++ trunk/Source/WebCore/DerivedSources.make	2016-01-27 16:57:31 UTC (rev 195673)
@@ -1208,7 +1208,7 @@
 endef
 
 $(SUPPLEMENTAL_MAKEFILE_DEPS) : $(PREPROCESS_IDLS_SCRIPTS) $(BINDING_IDLS) $(PLATFORM_FEATURE_DEFINES) DerivedSources.make
-	$(foreach f,$(BINDING_IDLS),echo $(f)>>$(IDL_FILES_TMP)$(NL))
+	$(foreach f,$(BINDING_IDLS),@echo $(f)>>$(IDL_FILES_TMP)$(NL))
 	$(call preprocess_idls_script, $(PREPROCESS_IDLS_SCRIPTS)) --defines "$(FEATURE_DEFINES) $(ADDITIONAL_IDL_DEFINES) LANGUAGE_JAVASCRIPT" --idlFilesList $(IDL_FILES_TMP) --supplementalDependencyFile $(SUPPLEMENTAL_DEPENDENCY_FILE) --windowConstructorsFile $(WINDOW_CONSTRUCTORS_FILE) --workerGlobalScopeConstructorsFile $(WORKERGLOBALSCOPE_CONSTRUCTORS_FILE) --dedicatedWorkerGlobalScopeConstructorsFile $(DEDICATEDWORKERGLOBALSCOPE_CONSTRUCTORS_FILE) --supplementalMakefileDeps $@
 	$(DELETE) $(IDL_FILES_TMP)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to