diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2014-05-22 16:58:22 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2014-05-22 22:49:02 +0200 |
commit | 87c1aa16a95dcff9247ae12a4bb5ea2d866b1772 (patch) | |
tree | 187d0efb9ffa3c1b84a2b06584c55342f1788d43 /postprocess | |
parent | 4fbbfc2269d9671415efea2d946176abb83c5930 (diff) |
use $(gb_AWK) instead of awk
Change-Id: Ia00d7e52de5edfce09c3a0a8aa4390e3e1582a01
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/CustomTarget_registry.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index 0bc71a98b730..2ae4ab62a5ab 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -594,17 +594,17 @@ $(call gb_CustomTarget_get_workdir,postprocess/registry)/Langpack-%.list : # zero-sized org/openoffice/TypeDectection/Filter.xcu; filter them out in the # find shell command below (see issue 110041): $(call gb_CustomTarget_get_workdir,postprocess/registry)/fcfg_langpack_%.list : - $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,2) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),AWK,2) $(call gb_Helper_abbreviate_dirs,\ find $(call gb_XcuResTarget_get_target,fcfg_langpack/$*/)\ -name *.xcu -size +0c \ - | awk 'BEGIN{print "<list>"} \ + | $(gb_AWK) 'BEGIN{print "<list>"} \ {print "<filename>"$$0"</filename>"} \ END {print "</list>"}' > $@ \ ) $(call gb_CustomTarget_get_workdir,postprocess/registry)/registry_%.list : - $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,2) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),AWK,2) $(call gb_Helper_abbreviate_dirs,\ find $(call gb_XcuResTarget_get_target,registry/$*/)\ $(if $(filter DBCONNECTIVITY,$(BUILD_TYPE)),\ @@ -613,7 +613,7 @@ $(call gb_CustomTarget_get_workdir,postprocess/registry)/registry_%.list : $(if $(filter TRUE,$(ENABLE_ONLINE_UPDATE)),\ $(call gb_XcuResTarget_get_target,updchk/$*/))\ -name *.xcu \ - | awk 'BEGIN{print "<list>"} \ + | $(gb_AWK) 'BEGIN{print "<list>"} \ {print "<filename>"$$0"</filename>"} \ END {print "</list>"}' > $@ \ ) |