diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2011-01-06 12:34:08 +0100 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2011-01-06 12:34:08 +0100 |
commit | f37e09084c60834aca7413bcf0245e8be4bb07d3 (patch) | |
tree | 86aaa999b5b53c394ba9769ba835bae127c751f7 /postprocess/packregistry | |
parent | ed629cd4a908471bde99ca2039da18f6363923c0 (diff) |
ause129: #i116325# don't process .<basename>.xcu, created on mac
Diffstat (limited to 'postprocess/packregistry')
-rw-r--r-- | postprocess/packregistry/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postprocess/packregistry/makefile.mk b/postprocess/packregistry/makefile.mk index a6881783776a..4109bfdaae97 100644 --- a/postprocess/packregistry/makefile.mk +++ b/postprocess/packregistry/makefile.mk @@ -522,7 +522,7 @@ $(MISC)/lang/fcfg_langpack_%.xcd .ERRREMOVE : cd $(MISC)/$(@:b).unzip && unzip $(SOLARPCKDIR)/$(@:b).zip - $(RM) $(MISC)/$(@:b).list echo '<list>' $(foreach,i,$(shell cd $(MISC) && \ - find $(@:b).unzip -name \*.xcu -size +0c -print) \ + find $(@:b).unzip -name [^.]\*.xcu -size +0c -print) \ '<filename>$i</filename>') '</list>' > $(MISC)/$(@:b).list $(XSLTPROC) --nonet --stringparam prefix $(PWD)/$(MISC)/ -o $@ \ $(SOLARENV)/bin/packregistry.xslt $(MISC)/$(@:b).list @@ -541,7 +541,7 @@ $(MISC)/lang/registry_%.xcd .ERRREMOVE : unzip $(SOLARPCKDIR)/fcfg_drivers_$*.zip - $(RM) $(MISC)/$(@:b).list echo '<list>' $(foreach,i,$(shell cd $(MISC) && \ - find $(@:b).unzip fcfg_drivers_$*.unzip -name \*.xcu -print) \ + find $(@:b).unzip fcfg_drivers_$*.unzip -name [^.]\*.xcu -print) \ '<filename>$i</filename>') '</list>' > $(MISC)/$(@:b).list $(XSLTPROC) --nonet --stringparam prefix $(PWD)/$(MISC)/ -o $@ \ $(SOLARENV)/bin/packregistry.xslt $(MISC)/$(@:b).list |