Merge "Slightly easier debugging of missing inputs to copy-file-to-target"

This commit is contained in:
Treehugger Robot 2017-10-19 22:52:20 +00:00 committed by Gerrit Code Review
commit 1cba05bb39
1 changed files with 2 additions and 2 deletions

View File

@ -2680,7 +2680,7 @@ endef
define copy-file-to-target
@mkdir -p $(dir $@)
$(hide) rm -f $@
$(hide) cp $< $@
$(hide) cp "$<" "$@"
endef
# The same as copy-file-to-target, but use the local
@ -2688,7 +2688,7 @@ endef
define copy-file-to-target-with-cp
@mkdir -p $(dir $@)
$(hide) rm -f $@
$(hide) cp -p $< $@
$(hide) cp -p "$<" "$@"
endef
# The same as copy-file-to-target, but strip out "# comment"-style