Merge "Slightly easier debugging of missing inputs to copy-file-to-target"
am: 1cba05bb39
Change-Id: I57ba43f79d5fc3e9baf73e119bb9881d3ccd0f68
This commit is contained in:
commit
32668a2252
|
@ -2680,7 +2680,7 @@ endef
|
||||||
define copy-file-to-target
|
define copy-file-to-target
|
||||||
@mkdir -p $(dir $@)
|
@mkdir -p $(dir $@)
|
||||||
$(hide) rm -f $@
|
$(hide) rm -f $@
|
||||||
$(hide) cp $< $@
|
$(hide) cp "$<" "$@"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# The same as copy-file-to-target, but use the local
|
# The same as copy-file-to-target, but use the local
|
||||||
|
@ -2688,7 +2688,7 @@ endef
|
||||||
define copy-file-to-target-with-cp
|
define copy-file-to-target-with-cp
|
||||||
@mkdir -p $(dir $@)
|
@mkdir -p $(dir $@)
|
||||||
$(hide) rm -f $@
|
$(hide) rm -f $@
|
||||||
$(hide) cp -p $< $@
|
$(hide) cp -p "$<" "$@"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# The same as copy-file-to-target, but strip out "# comment"-style
|
# The same as copy-file-to-target, but strip out "# comment"-style
|
||||||
|
|
Loading…
Reference in New Issue