[Libreoffice-commits] core.git: editeng/CustomTarget_generated.mk sw/CustomTarget_generated.mk

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Jan 17 08:55:31 UTC 2019


 editeng/CustomTarget_generated.mk |    4 ++--
 sw/CustomTarget_generated.mk      |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit d8106b6db488a4439f7bb781920c92a056b91ba6
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Jan 17 00:00:46 2019 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Jan 17 09:55:05 2019 +0100

    Non-standard sed -i option is different on macOS than with GNU sed
    
    While with GNU sed the optional backup suffix is given directly as part of the
    -i[SUFFIX] (or --in-place[=SUFFIX]) argument, on macOS it must unconditionally
    be given as a (potentially empty) argument following the -i argument.  That
    means that on macOS the -e that happens to follow the -i in these sed
    invocations (and that happens to not be necessary to introduce the following
    script in these invocations) was mistaken as the backup suffix, causing creation
    of pointless workdir/CustomTarget/*/generated/tokens.cxx-e backup files.
    
    Change-Id: Icd865c76139afa348d03813eb83653afd7221a0e
    Reviewed-on: https://gerrit.libreoffice.org/66491
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/editeng/CustomTarget_generated.mk b/editeng/CustomTarget_generated.mk
index e5e8ce66c066..91d6aa46bc65 100644
--- a/editeng/CustomTarget_generated.mk
+++ b/editeng/CustomTarget_generated.mk
@@ -19,8 +19,8 @@ $(editeng_INC)/tokens.hxx $(editeng_INC)/tokens.gperf : $(editeng_SRC)/tokens.tx
 
 $(editeng_INC)/tokens.cxx : $(editeng_INC)/tokens.gperf
 	$(GPERF) --compare-strncmp --readonly-tables --output-file=$(editeng_INC)/tokens.cxx $(editeng_INC)/tokens.gperf
-	sed -i -e "s/(char\*)0/(char\*)0, XML_TOKEN_INVALID/g" $(editeng_INC)/tokens.cxx
-	sed -i -e "/^#line/d" $(editeng_INC)/tokens.cxx
+	sed -i $(if $(filter MACOSX,$(OS)),'') -e "s/(char\*)0/(char\*)0, XML_TOKEN_INVALID/g" $(editeng_INC)/tokens.cxx
+	sed -i $(if $(filter MACOSX,$(OS)),'') -e "/^#line/d" $(editeng_INC)/tokens.cxx
 
 $(call gb_CustomTarget_get_target,editeng/generated) : $(editeng_INC)/tokens.cxx
 
diff --git a/sw/CustomTarget_generated.mk b/sw/CustomTarget_generated.mk
index f8244d2d65dd..94ffb5e1aaa0 100644
--- a/sw/CustomTarget_generated.mk
+++ b/sw/CustomTarget_generated.mk
@@ -26,8 +26,8 @@ $(sw_INC)/tokens.cxx : $(sw_INC)/TextBlockTokens.gperf $(sw_INC)/BlockListTokens
 	--class-name=TextBlockTokens --word-array-name=textBlockList --enum $(sw_INC)/TextBlockTokens.gperf
 	$(GPERF) --compare-strncmp --readonly-tables -T $(sw_INC)/BlockListTokens.gperf \
 	--class-name=BlockListTokens --word-array-name=blockListList >> $(sw_INC)/tokens.cxx
-	sed -i -e "s/(char\*)0/(char\*)0, XML_TOKEN_INVALID/g" $(sw_INC)/tokens.cxx
-	sed -i -e "/^#line/d" $(sw_INC)/tokens.cxx
+	sed -i $(if $(filter MACOSX,$(OS)),'') -e "s/(char\*)0/(char\*)0, XML_TOKEN_INVALID/g" $(sw_INC)/tokens.cxx
+	sed -i $(if $(filter MACOSX,$(OS)),'') -e "/^#line/d" $(sw_INC)/tokens.cxx
 
 $(call gb_CustomTarget_get_target,sw/generated) : $(sw_INC)/tokens.cxx
 


More information about the Libreoffice-commits mailing list