Merge "Slightly easier debugging of missing inputs to copy-file-to-target" am: 1cba05bb39
am: 32668a2252
am: a888eb9117
Change-Id: I06acd0c53b18acc5a1bd8be67e5d22d13452a664
This commit is contained in:
commit
1e5b282670
|
@ -2689,7 +2689,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
|
||||
|
@ -2697,7 +2697,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
|
||||
|
|
Loading…
Reference in New Issue