diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-02-15 10:14:37 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-02-15 11:25:38 +0100 |
commit | 8986dec8229cf31ccfadb61e6e90c905f7033ac7 (patch) | |
tree | 1957c2648ad5c5a23ec6a4f62e7dfce131a6158f /CustomTarget_html.mk | |
parent | 96e5f8c5059270f9d17b0151a90b6893eb3f433d (diff) |
tdf#121532 Don't use non-standard `echo -n`
At least the version of echo used to build TDF's LO 6.2.0.3 release apparently
doesn't understand that non-standard option and printed out "-n" verbatim,
generating a broken languages.js. (Though my local macOS 10.14.3 /bin/echo does
understand that option.)
Change-Id: I7233fa5c6e7851c5086c428a67aaee71604061e1
Reviewed-on: https://gerrit.libreoffice.org/67858
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'CustomTarget_html.mk')
-rw-r--r-- | CustomTarget_html.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk index 7c5a9ddc81..b3c9b4e69a 100644 --- a/CustomTarget_html.mk +++ b/CustomTarget_html.mk @@ -52,9 +52,9 @@ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/hid2file.js : \ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/languages.js : \ $(SRCDIR)/helpcontent2/CustomTarget_html.mk ( \ - echo -n 'var languagesSet = new Set([' ; \ - for lang in $(gb_HELP_LANGS) ; do echo -n "'$$lang', " ; done | sed 's/, $$//' ; \ - echo ']);' \ + printf 'var languagesSet = new Set([' ; \ + for lang in $(gb_HELP_LANGS) ; do printf '%s' "'$$lang', " ; done | sed 's/, $$//' ; \ + printf ']);\n' \ ) > $@ define html_gen_langnames_js_dep |