Skip to content

Commit

Permalink
Stop echoing echo commands to stdout
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=153531

Reviewed by Csaba Osztrogonác.

* DerivedSources.make:

Canonical link: https://commits.webkit.org/171611@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@195673 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
Anders Carlsson committed Jan 27, 2016
1 parent 8122253 commit dbffb44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Source/WebCore/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2016-01-26 Anders Carlsson <andersca@apple.com>

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 <jer.noble@apple.com>

Calling video.controls=true during a scrub operation cancels scrub.
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/DerivedSources.make
Original file line number Diff line number Diff line change
Expand Up @@ -1208,7 +1208,7 @@ define NL
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)

Expand Down

0 comments on commit dbffb44

Please sign in to comment.