diff options
-rw-r--r-- | postprocess/CustomTarget_registry.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index b1472512c09e..878be8d91ac7 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -621,8 +621,9 @@ $(call gb_CustomTarget_get_workdir,postprocess/registry)/registry_%.list : $(call gb_CustomTarget_get_workdir,postprocess/registry)/%.list : $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,2) - echo '<list>' $(foreach i,$(postprocess_DEPS_$*), '<dependency file="$i"/>') \ - $(foreach i,$(postprocess_OPTDEPS_$*), '<dependency file="$i" optional="true"/>') \ - $(foreach i,$(postprocess_FILES_$*), '<filename>$(i)</filename>') '</list>' > $@ + mv $(call var2file,$@.tmp,70,<list> $(foreach i,$(postprocess_DEPS_$*), <dependency file='$i'/>) \ + $(foreach i,$(postprocess_OPTDEPS_$*), <dependency file='$i' optional='true'/>) \ + $(foreach i,$(postprocess_FILES_$*), <filename>$(i)</filename>) </list>) \ + $@ # vim: set noet sw=4 ts=4: |