diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-12-18 15:26:43 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-12-18 15:26:43 +0000 |
commit | 7d6b028fdcd342184b7abf20133c5e2fee1d185c (patch) | |
tree | 091707545c793a937ada6140d997d65120105696 | |
parent | 52cc0205920ad55d76a8534540acb51de9506d04 (diff) |
#i10000# Under some obscure circumstances we need quoting for this expression.
-rw-r--r-- | reportdesign/util/makefile.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/reportdesign/util/makefile.mk b/reportdesign/util/makefile.mk index 10f083671..e5a0b9052 100644 --- a/reportdesign/util/makefile.mk +++ b/reportdesign/util/makefile.mk @@ -213,7 +213,7 @@ DEF3NAME=$(SHL3TARGET) XMLFILES = $(EXTENSIONDIR)$/META-INF$/manifest.xml # DESCRIPTION_SRC is the source file which is copied into the extension -# It is defaulted to "descriptio.xml", but we want to pre-process it, so we use an intermediate +# It is defaulted to "description.xml", but we want to pre-process it, so we use an intermediate # file DESCRIPTION_SRC = $(MISC)$/description.xml @@ -345,7 +345,8 @@ $(COMPONENT_HELP) : $$(@:f) $(COPY) $< $@ $(DESCRIPTION_SRC): description.xml - $(TYPE) description.xml | $(SED) s/#VERSION#/$(EXTENSION_VERSION)/> $@ + +-$(RM) $@ + $(TYPE) description.xml | $(SED) "s/#VERSION#/$(EXTENSION_VERSION)/" > $@ .ELSE # "$(SOLAR_JAVA)"!="" .INCLUDE : target.mk |